@charset "UTF-8";

:root {
  --pink-50: #fffbfc;
  --pink-100: #fff3f6;
  --pink-150: #fce8ee;
  --pink-200: #f9d9e6;
  --pink-300: #f6c6d2;
  --pink-400: #e8a7b4;
  --pink-500: #cf7f93;
  --pink-600: #b94f6b;
  --rose: #a83e59;
  --berry: #6b514b;
  --cream: #fefaf9;
  --white: #fff;
  --ink: #5b4540;
  --muted: #796762;
  --gold: #a98570;
  --line: rgba(166, 90, 111, 0.18);
  --shadow: 0 22px 60px rgba(112, 80, 92, 0.14);
  --soft-shadow: 0 12px 35px rgba(112, 80, 92, 0.11);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1160px;
  --font-body:
    "Zen Maru Gothic", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN",
    sans-serif;
  --font-serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-display: "DM Serif Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.9;
  background:
    radial-gradient(
      circle at 10% 4%,
      rgba(249, 217, 230, 0.72) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 86% 8%,
      rgba(198, 150, 152, 0.34) 0 2px,
      transparent 3px
    ),
    linear-gradient(180deg, var(--pink-50), var(--cream) 38%, #fdf5f7 100%);
  overflow-x: hidden;
}

body.is-dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  color: inherit;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(h1, h2, h3, h4, .section-label) {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
}

:where(p, li, dd, td, figcaption) {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  :where(h1, h2, h3, h4, p, li, dd, td, figcaption) {
    word-break: auto-phrase;
  }
}

.desktop-break {
  display: inline;
}

:focus-visible {
  outline: 3px solid #8f344f;
  outline-offset: 4px;
}

::selection {
  color: var(--berry);
  background: var(--pink-300);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: -90px;
  left: 14px;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  background: var(--berry);
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  position: fixed;
  z-index: -2;
  width: 410px;
  height: 410px;
  content: "";
  border-radius: 50%;
  opacity: 0.48;
  filter: blur(7px);
  pointer-events: none;
}

.site-shell::before {
  top: 16%;
  left: -230px;
  background: radial-gradient(circle, var(--pink-200), transparent 68%);
}

.site-shell::after {
  right: -235px;
  bottom: 7%;
  background: radial-gradient(circle, var(--pink-300), transparent 68%);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 98px;
}

.ribbon-bar {
  position: relative;
  z-index: 1002;
  padding: 7px 14px;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-align: center;
  background:
    linear-gradient(
      90deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.78) 14px calc(100% - 14px),
      transparent calc(100% - 14px)
    ),
    repeating-linear-gradient(
      135deg,
      var(--pink-300) 0 8px,
      var(--pink-100) 8px 16px
    );
  border-bottom: 1px solid rgba(166, 90, 111, 0.14);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(166, 90, 111, 0.13);
  box-shadow: 0 7px 24px rgba(111, 41, 77, 0.05);
  backdrop-filter: blur(18px);
  transition:
    padding 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 6px 0;
  box-shadow: 0 10px 32px rgba(111, 41, 77, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 44px), 1260px);
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--berry);
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--cream);
  border: 1px solid rgba(166, 90, 111, 0.2);
  box-shadow: 0 7px 18px rgba(112, 80, 92, 0.12);
}

.brand-logo--header,
.brand-logo--footer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-logo--about {
  width: 94px;
  height: 94px;
  border-radius: 24px;
}

.logo-placeholder {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  color: var(--rose);
  background: linear-gradient(145deg, #fff, var(--pink-100));
  border: 1px solid rgba(201, 60, 118, 0.26);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(155, 53, 94, 0.12);
}

.logo-placeholder::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px dashed rgba(201, 60, 118, 0.42);
  border-radius: 50%;
}

.logo-placeholder b {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.logo-placeholder i {
  position: absolute;
  z-index: 2;
  right: 7px;
  bottom: 5px;
  color: var(--pink-500);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: normal;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-copy strong {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0.08em;
}
.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.9vw, 28px);
}

.site-nav a,
.site-nav button {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a {
  position: relative;
  padding: 13px 0;
  color: #684457;
}

.site-nav > a::after {
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--pink-500);
  transition:
    right 0.2s ease,
    left 0.2s ease;
}

.site-nav > a:hover::after {
  right: 0;
  left: 0;
}

.nav-cta {
  padding: 11px 20px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(166, 45, 100, 0.23);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 27px rgba(166, 45, 100, 0.28);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  background: var(--pink-100);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--rose);
  border-radius: 99px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 76px 0 92px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 20px max(22px, calc((100vw - var(--container)) / 2 - 36px));
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(
      0deg,
      transparent 0 29px,
      rgba(210, 85, 137, 0.07) 30px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 29px,
      rgba(210, 85, 137, 0.07) 30px
    );
  border: 1px solid rgba(198, 65, 120, 0.2);
  border-radius: 56px;
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -95px;
  color: rgba(218, 92, 143, 0.08);
  content: "♡";
  font-family: Georgia, serif;
  font-size: clamp(190px, 28vw, 410px);
  line-height: 1;
  transform: rotate(14deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after,
.section-label::before,
.section-label::after {
  content: "♡";
  font-family: Georgia, serif;
  font-size: 11px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 19px;
  padding: 6px 15px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 700;
  background: var(--pink-100);
  border-radius: 999px;
}

.hero-kicker i {
  margin: 0 8px;
  color: var(--pink-500);
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 span {
  display: block;
}
.hero-small-line {
  font-size: clamp(27px, 3.1vw, 42px);
  letter-spacing: 0.03em;
}
.hero-name {
  margin: 9px 0 4px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: clamp(70px, 8.8vw, 114px);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.95;
}
.hero-jp {
  color: var(--pink-600);
  font-size: clamp(21px, 2.5vw, 31px);
  letter-spacing: 0.1em;
}

.hero-lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: #6c5360;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 25px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  box-shadow: 0 12px 28px rgba(166, 45, 100, 0.25);
}
.button-primary:hover:not(:disabled) {
  box-shadow: 0 16px 34px rgba(166, 45, 100, 0.31);
}
.button-secondary {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(166, 45, 100, 0.25);
}
.button-white {
  color: var(--rose);
  background: #fff;
  box-shadow: 0 14px 30px rgba(91, 22, 54, 0.19);
}
.button-full {
  width: 100%;
}
.button:disabled {
  color: #9c7b8b;
  cursor: not-allowed;
  background: #f1e8ed;
  box-shadow: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 5px 11px;
  color: #765465;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(209, 81, 133, 0.15);
  border-radius: 999px;
}

.hero-points span {
  margin-right: 3px;
  color: var(--pink-500);
}

.hero-visual {
  position: relative;
  min-height: 550px;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  background: var(--pink-100);
  border: 9px solid #fff;
  outline: 1px solid rgba(166, 90, 111, 0.2);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo {
  inset: 22px 54px 52px 0;
  margin: 0;
  border-radius: 47% 47% 29% 29% / 39% 39% 24% 24%;
  transform: rotate(1.5deg);
}

.hero-main-photo img {
  object-position: 50% 55%;
}

.hero-small-photo {
  right: -7px;
  bottom: 0;
  width: 205px;
  height: 244px;
  margin: 0;
  border-radius: 43% 43% 28% 28%;
  transform: rotate(-6deg);
}

.bow {
  position: absolute;
  z-index: 4;
  width: 104px;
  height: 56px;
  filter: drop-shadow(0 8px 8px rgba(137, 46, 83, 0.17));
}

.bow::before,
.bow::after {
  position: absolute;
  top: 9px;
  width: 52px;
  height: 40px;
  content: "";
  background: linear-gradient(145deg, var(--pink-300), #c69698);
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.bow::before {
  left: 2px;
  border-radius: 80% 20% 70% 30%;
  transform: rotate(18deg);
}
.bow::after {
  right: 2px;
  border-radius: 20% 80% 30% 70%;
  transform: rotate(-18deg);
}

.bow > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 38px;
  width: 30px;
  height: 30px;
  background: linear-gradient(145deg, var(--pink-100), #c69698);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.hero-bow {
  top: 6px;
  right: 27px;
  transform: rotate(8deg);
}
.intro-bow {
  top: 0;
  left: -35px;
  transform: rotate(-12deg) scale(0.9);
}
.host-bow {
  top: -24px;
  right: 18px;
  transform: rotate(9deg);
}

.sparkle {
  position: absolute;
  z-index: 4;
  color: var(--pink-500);
  font-size: 27px;
  animation: float 4.6s ease-in-out infinite;
}

.sparkle-one {
  top: 18%;
  left: -3%;
}
.sparkle-two {
  right: 0;
  bottom: 33%;
  animation-delay: 0.8s;
}

.hero-heart {
  position: absolute;
  z-index: -1;
  color: rgba(219, 95, 145, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.hero-heart-one {
  top: 46px;
  left: 2%;
  font-size: 74px;
  transform: rotate(-18deg);
}
.hero-heart-two {
  right: 5%;
  bottom: 33px;
  font-size: 52px;
  transform: rotate(18deg);
}

.hero-photo-note {
  position: absolute;
  z-index: 5;
  top: 48px;
  left: -34px;
  margin: 0;
  padding: 14px 18px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  transform: rotate(-7deg);
}

.hero-photo-note b {
  color: var(--rose);
  font-size: 17px;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 28px;
  margin-top: 5px;
  overflow: hidden;
  background: var(--pink-300);
}
.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--rose);
  animation: scrollLine 2s ease-in-out infinite;
}

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--pink-400);
}
.heart-divider i {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-300), transparent);
}

.section-heading {
  max-width: 810px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-heading h2,
.left-title {
  margin: 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(29px, 4.1vw, 45px);
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.035em;
}

.section-heading h2 > span {
  margin: 0 6px;
  color: var(--pink-400);
  font-family: var(--font-body);
  font-size: 0.55em;
}
.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.compact-heading {
  margin-bottom: 34px;
}
.align-left {
  justify-content: flex-start;
}
.align-left::before {
  content: "♡";
}
.align-left::after {
  display: none;
}
.mobile-only {
  display: none;
}

.schedule-section {
  padding-top: 54px;
}

.schedule-panel {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 68, 119, 0.17);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.schedule-panel::before,
.schedule-panel::after {
  position: absolute;
  color: rgba(222, 105, 153, 0.09);
  content: "♡";
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
}
.schedule-panel::before {
  top: -62px;
  left: -34px;
  transform: rotate(-17deg);
}
.schedule-panel::after {
  right: -28px;
  bottom: -69px;
  transform: rotate(17deg);
}

.schedule-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
}

.calendar-placeholder {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 50px 30px 34px;
  place-content: center;
  overflow: hidden;
  color: var(--berry);
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 235, 244, 0.9)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 37px,
      rgba(216, 93, 143, 0.1) 38px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 71px,
      rgba(216, 93, 143, 0.08) 72px
    );
  border: 2px dashed rgba(166, 90, 111, 0.3);
  border-radius: 30px;
}

.calendar-placeholder::before {
  position: absolute;
  top: 68px;
  left: 10%;
  width: 80%;
  height: 1px;
  content: "";
  background: rgba(166, 90, 111, 0.16);
  box-shadow:
    0 47px rgba(166, 90, 111, 0.09),
    0 94px rgba(166, 90, 111, 0.09),
    0 141px rgba(166, 90, 111, 0.09),
    0 188px rgba(166, 90, 111, 0.09);
}
.placeholder-ribbon {
  position: absolute;
  top: 23px;
  left: -40px;
  width: 180px;
  padding: 7px 0;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  background: var(--pink-600);
  transform: rotate(-35deg);
}
.placeholder-heart {
  color: var(--pink-400);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}
.calendar-placeholder strong {
  font-family: var(--font-serif);
  font-size: clamp(27px, 4vw, 39px);
}
.calendar-placeholder p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.calendar-placeholder small {
  color: var(--rose);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
}

.next-event-card {
  padding: 32px;
  background: linear-gradient(155deg, #fff, var(--pink-50));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.mini-label {
  color: var(--pink-600);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.next-event-card h3 {
  margin: 7px 0 23px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 25px;
}
.next-event-card dl {
  margin: 0;
}
.next-event-card dl > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(184, 63, 112, 0.18);
}
.next-event-card dt {
  color: var(--rose);
  font-weight: 900;
  white-space: nowrap;
}
.next-event-card dd {
  margin: 0;
  color: #68505d;
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}
.pending-note {
  margin: 18px 0;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  background: var(--pink-100);
  border-radius: 12px;
}

.home-calendar-button {
  width: 100%;
  max-width: none;
  align-self: start;
}

.home-schedule-date {
  display: block;
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.home-schedule-date + .home-schedule-date {
  margin-top: 5px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 100px);
}
.split-copy p {
  color: #674e5b;
}
.split-copy p:not(.section-label) {
  margin: 22px 0;
}
.split-copy mark {
  padding: 0 3px;
  color: var(--berry);
  font-weight: 700;
  background: linear-gradient(transparent 58%, var(--pink-200) 58%);
}
.split-copy strong {
  color: var(--rose);
}
.ribbon-underline {
  position: relative;
  width: 150px;
  height: 25px;
  margin: 15px 0 28px;
}
.ribbon-underline::before,
.ribbon-underline::after {
  position: absolute;
  top: 6px;
  width: 64px;
  height: 11px;
  content: "";
  background: var(--pink-300);
}
.ribbon-underline::before {
  left: 0;
  transform: skewY(8deg);
}
.ribbon-underline::after {
  right: 0;
  transform: skewY(-8deg);
}
.ribbon-underline span {
  position: absolute;
  z-index: 2;
  top: 1px;
  left: 65px;
  width: 20px;
  height: 20px;
  background: var(--pink-400);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  padding: 0 0 6px;
  align-items: center;
  gap: 12px;
  color: var(--rose);
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--pink-300);
}

.text-link span {
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translateX(5px);
}

.split-photo {
  position: relative;
  min-height: 560px;
}
.soft-photo {
  overflow: hidden;
  background: var(--pink-100);
  border: 9px solid #fff;
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.soft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.large-photo {
  position: absolute;
  inset: 15px 0 30px 22px;
  margin: 0;
  border-radius: 45% 45% 20% 20% / 34% 34% 18% 18%;
  transform: rotate(1deg);
}
.large-photo img {
  object-position: 50% 52%;
}
.photo-sticker {
  position: absolute;
  right: -30px;
  bottom: 0;
  padding: 14px 20px;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  transform: rotate(7deg);
}

.section-pink {
  background: linear-gradient(
    180deg,
    rgba(249, 217, 230, 0.58),
    rgba(255, 250, 252, 0.96)
  );
  border-block: 1px solid rgba(166, 90, 111, 0.11);
}

.about-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 55px;
  padding: clamp(27px, 5vw, 64px);
  align-items: center;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(166, 90, 111, 0.13);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.about-brand-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.about-brand-row p {
  margin: 0;
  color: #624957;
  font-size: 17px;
  line-height: 1.9;
}
.about-brand-row strong {
  color: var(--rose);
}

.logo-placeholder-large {
  flex: 0 0 auto;
  width: 94px;
  height: 94px;
}
.logo-placeholder-large b {
  font-size: 40px;
}
.logo-placeholder-large i {
  right: 13px;
  bottom: 11px;
  font-size: 18px;
}
.logo-placeholder-large small {
  position: absolute;
  bottom: 4px;
  left: 50%;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #634b58;
  font-weight: 700;
}
.check-list span {
  color: var(--pink-500);
}
.hand-note {
  color: var(--rose) !important;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
}

.about-photo {
  height: 410px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 48% 48% 27% 27% / 39% 39% 22% 22%;
  outline: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  transform: rotate(1.4deg);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
}

.philosophy-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(246, 198, 210, 0.42), transparent 26%),
    linear-gradient(180deg, #fffdfd, rgba(249, 217, 230, 0.28));
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.96fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.philosophy-visual {
  margin: 0;
  padding: clamp(8px, 1.5vw, 15px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}

.philosophy-visual img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 10px);
}

.philosophy-copy {
  display: grid;
  gap: 18px;
}

.philosophy-copy article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 17px;
  padding: 22px 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(166, 90, 111, 0.15);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.philosophy-copy article > span {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 28px;
  place-items: center;
  background: linear-gradient(145deg, var(--pink-100), var(--pink-200));
  border-radius: 50%;
}

.philosophy-copy h3 {
  margin: 0 0 4px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 20px;
}

.philosophy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}
.recommend-visual {
  position: relative;
  min-height: 570px;
}
.blob {
  position: absolute;
  inset: 42px 35px 30px 0;
  background: linear-gradient(145deg, var(--pink-100), var(--pink-200));
  border-radius: 45% 55% 40% 60% / 58% 35% 65% 42%;
  transform: rotate(-6deg);
}
.circle-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--pink-100);
  border: 8px solid #fff;
  border-radius: 50%;
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circle-photo-large {
  top: 0;
  left: 0;
  width: 430px;
  height: 430px;
}
.circle-photo-large img {
  object-position: 50% 52%;
}
.circle-photo-small {
  right: 0;
  bottom: 0;
  width: 235px;
  height: 235px;
}
.recommend-heart {
  position: absolute;
  top: 10px;
  right: 17px;
  color: var(--pink-400);
  font-family: Georgia, serif;
  font-size: 75px;
  transform: rotate(14deg);
}
.recommend-lead {
  margin: 13px 0 26px;
  color: var(--rose);
  font-weight: 700;
}
.ribbon-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ribbon-list li {
  position: relative;
  padding-left: 34px;
  color: #634a58;
  font-weight: 600;
}
.ribbon-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 22px;
  height: 16px;
  content: "";
  background: linear-gradient(145deg, var(--pink-300), var(--pink-500));
  clip-path: polygon(
    0 10%,
    47% 28%,
    100% 0,
    82% 50%,
    100% 100%,
    47% 72%,
    0 90%,
    18% 50%
  );
}

.feature-section {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, #76515d, #955f70 54%, #ad7185);
}

.feature-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}
.feature-bg-word {
  position: absolute;
  top: -22px;
  right: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 250px);
  line-height: 1;
  transform: rotate(-8deg);
}
.light-heading .section-label,
.light-heading h2,
.light-heading p:last-child {
  color: #fff;
}
.light-heading h2 > span {
  color: var(--pink-200);
}
.light-heading p:last-child {
  opacity: 0.84;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 8px 24px;
  min-height: 235px;
  padding: 27px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(70, 18, 44, 0.17);
}
.feature-card figure {
  grid-row: 1 / 4;
  width: 150px;
  height: 180px;
  margin: 0;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 48% 48% 28% 28% / 38% 38% 22% 22%;
  outline: 1px solid var(--line);
}
.feature-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-number {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.feature-card h3 {
  margin: 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.55;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.occupations-section {
  padding-bottom: 70px;
}
.occupations-card {
  max-width: 990px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.79);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}
.occupations-card h2 {
  margin: 0 0 18px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.55;
}
.occupations-card > p:not(.section-label):not(.hand-note) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 36px 0 26px;
}
.tag-cloud span {
  padding: 8px 15px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  background: var(--pink-100);
  border: 1px solid rgba(166, 90, 111, 0.13);
  border-radius: 999px;
}

.event-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--pink-100), var(--pink-50));
}
.slider-shell {
  position: relative;
}
.event-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  padding: 10px 4px 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.event-slider::-webkit-scrollbar {
  display: none;
}
.event-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.event-card figure {
  height: 225px;
  margin: 0;
  overflow: hidden;
  background: var(--pink-100);
}
.event-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover img {
  transform: scale(1.04);
}
.event-card > div {
  padding: 21px 22px 24px;
}
.event-card span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.event-card h3 {
  margin: 2px 0 8px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 21px;
}
.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.event-card .event-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--rose);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(166, 45, 100, 0.35);
  text-underline-offset: 4px;
}
.slider-button {
  position: absolute;
  z-index: 5;
  top: 43%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0 0 5px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  transform: translateY(-50%);
}
.slider-button.prev {
  left: -24px;
}
.slider-button.next {
  right: -24px;
}
.slider-button:disabled {
  opacity: 0.35;
  cursor: default;
}
.slider-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.comparison-section {
  background: #fff;
}
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}
.comparison-wrap table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
  font-size: 13px;
}
.comparison-wrap th,
.comparison-wrap td {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #f2e4eb;
  border-bottom: 1px solid #f2e4eb;
}
.comparison-wrap thead th {
  color: #745766;
  background: #fff9fb;
}
.comparison-wrap tbody th {
  color: var(--rose);
  background: var(--pink-50);
}
.comparison-wrap .is-mingle {
  color: var(--berry);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
}
.comparison-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.price-section {
  padding-top: 72px;
  padding-bottom: 80px;
}
.price-card {
  position: relative;
  max-width: 830px;
  margin-inline: auto;
  padding: 48px 35px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(150deg, #fff, var(--pink-100));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.price-card::before,
.price-card::after {
  position: absolute;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, var(--pink-200), transparent 68%);
  border-radius: 50%;
  opacity: 0.8;
}
.price-card::before {
  top: -65px;
  left: -45px;
}
.price-card::after {
  right: -40px;
  bottom: -70px;
}
.price-heart {
  display: block;
  color: var(--pink-400);
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 1;
}
.price-catch {
  margin: 0 0 13px;
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
}
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin: 6px 0 18px;
}
.price-main span {
  color: var(--muted);
  font-weight: 700;
}
.price-main strong {
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(35px, 6vw, 58px);
}
.price-card > p:not(.section-label):not(.price-catch) {
  color: var(--muted);
  font-size: 13px;
}
.placeholder-chip {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 13px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  background: var(--pink-100);
  border: 1px dashed var(--pink-400);
  border-radius: 999px;
}

.flow-section {
  background: linear-gradient(180deg, #fff8fb, #fff);
}
.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-list::before {
  position: absolute;
  top: 55px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    var(--pink-300) 0 10px,
    transparent 10px 18px
  );
}
.flow-list li {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}
.flow-number {
  display: block;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.flow-list li > i {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 5px auto 18px;
  place-items: center;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  background: #fff;
  border: 2px solid var(--pink-300);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}
.flow-list h3 {
  margin: 0 0 8px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 18px;
}
.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.voices-section {
  background: var(--pink-100);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-placeholder {
  position: relative;
  padding: 32px 27px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 2px dashed rgba(188, 62, 113, 0.23);
  border-radius: 27px;
}
.voice-placeholder > span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
}
.voice-placeholder i {
  display: block;
  color: var(--pink-300);
  font-family: Georgia, serif;
  font-size: 45px;
  font-style: normal;
  line-height: 1.3;
}
.voice-placeholder h3 {
  margin: 2px 0 8px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 21px;
}
.voice-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.voice-placeholder small {
  display: inline-flex;
  margin-top: 20px;
  padding: 5px 11px;
  color: var(--rose);
  background: var(--pink-100);
  border-radius: 999px;
}

.host-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(58px, 9vw, 120px);
}
.host-visual {
  position: relative;
  min-height: 610px;
}
.host-visual::before {
  position: absolute;
  inset: 25px -18px 20px 32px;
  content: "";
  background: linear-gradient(145deg, #ffe8f1, #fff5f8);
  border-radius: 48% 52% 36% 64% / 57% 36% 64% 43%;
  transform: rotate(5deg);
}
.host-photo {
  position: absolute;
  inset: 0 8px 48px 0;
  margin: 0;
  overflow: hidden;
  background: var(--pink-100);
  border: 9px solid #fff;
  border-radius: 46% 46% 22% 22% / 34% 34% 16% 16%;
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.host-name-card {
  position: absolute;
  right: -28px;
  bottom: 4px;
  min-width: 235px;
  margin: 0;
  padding: 15px 24px;
  color: var(--berry);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transform: rotate(3deg);
}
.host-name-card small,
.host-name-card span {
  display: block;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.14em;
}
.host-name-card strong {
  display: block;
  margin: 2px 0;
  font-family: var(--font-serif);
  font-size: 25px;
}
.host-copy p:not(.section-label):not(.host-role) {
  margin: 20px 0;
  color: #654c59;
}
.host-role {
  display: inline-flex;
  gap: 8px;
  margin: 24px 0 5px;
  padding: 7px 13px;
  color: var(--muted);
  font-size: 13px;
  background: var(--pink-100);
  border-radius: 999px;
}
.host-role strong {
  color: var(--rose);
}
.signature {
  margin-top: 26px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  text-align: right;
  transform: rotate(-3deg);
}
.signature span {
  color: var(--pink-400);
}

.future-section {
  background: linear-gradient(
    180deg,
    rgba(255, 241, 247, 0.75),
    rgba(255, 255, 255, 0.92)
  );
}
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(58px, 8vw, 100px);
}
.future-copy > p:not(.section-label) {
  color: var(--muted);
}
.future-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.future-list li {
  display: flex;
  gap: 11px;
  color: var(--berry);
  font-weight: 700;
}
.future-list span {
  color: var(--pink-500);
}
.future-visual {
  position: relative;
  min-height: 520px;
}
.future-main-photo {
  position: absolute;
  inset: 0 25px 45px 0;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 35px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.future-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.future-small-photo {
  position: absolute;
  bottom: -8px;
  left: -42px;
  width: 190px;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}
.future-small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.future-sticker {
  position: absolute;
  top: -25px;
  right: 0;
  padding: 12px 17px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  transform: rotate(7deg);
}

.gallery-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fae7ed, #fff7f8);
}
.gallery-section::before {
  position: absolute;
  top: -150px;
  left: -100px;
  color: rgba(224, 104, 153, 0.1);
  content: "♡";
  font-family: Georgia, serif;
  font-size: 360px;
  line-height: 1;
  transform: rotate(-15deg);
}
.gallery-section .section-heading em {
  color: var(--rose);
  font-style: normal;
}
.photo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}
.photo-grid button {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--pink-100);
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(118, 41, 75, 0.1);
}
.photo-grid button:nth-child(1),
.photo-grid button:nth-child(7) {
  grid-row: span 2;
}
.photo-grid button:nth-child(4),
.photo-grid button:nth-child(10) {
  grid-column: span 2;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}
.photo-grid button:hover img {
  filter: saturate(1.05);
  transform: scale(1.05);
}
.gallery-message {
  margin: 47px 0 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.gallery-message strong {
  display: block;
  margin-top: 8px;
  color: var(--rose);
  font-size: 25px;
}

.faq-container {
  max-width: 920px;
}
.faq-list {
  display: grid;
  gap: 13px;
}
.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 8px 25px rgba(134, 46, 83, 0.07);
}
.faq-list summary {
  display: flex;
  min-height: 70px;
  padding: 20px 24px;
  align-items: center;
  gap: 12px;
  color: var(--berry);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: var(--pink-600);
  font-family: var(--font-display);
  font-size: 24px;
}
.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
  flex: 0 0 auto;
}
.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--pink-500);
  transition: transform 0.2s ease;
}
.faq-list summary i::after {
  transform: rotate(90deg);
}
.faq-list details[open] summary i::after {
  transform: rotate(0);
}
.faq-list details > div {
  display: flex;
  gap: 13px;
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq-list details > div > span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 22px;
}
.faq-list details p {
  margin: 0;
  font-size: 14px;
}

.final-cta {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #704553, #875161 58%, #945c6e);
}
.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
  background-size: 23px 23px;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta .section-label,
.final-cta h2 {
  color: #fff;
}
.final-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.45;
}
.final-cta p:not(.section-label) {
  margin: 18px 0 29px;
  opacity: 1;
}
.final-cta small {
  display: block;
  margin-top: 16px;
  opacity: 1;
}
.final-heart {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
  font-size: 230px;
  line-height: 1;
}
.heart-left {
  bottom: -66px;
  left: 1%;
  transform: rotate(-15deg);
}
.heart-right {
  top: -77px;
  right: 3%;
  transform: rotate(16deg);
}

.site-footer {
  position: relative;
  padding: 77px 0 25px;
  background: linear-gradient(180deg, #fff6f8, #f2dfe5);
  border-top: 1px solid rgba(166, 90, 111, 0.14);
}
.site-footer::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 27px;
  content: "";
  background: radial-gradient(
      circle at 13px 0,
      transparent 12px,
      rgba(255, 244, 248, 0.98) 13px
    )
    0 0 / 26px 26px repeat-x;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-brand-row > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer-brand-row strong {
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0.07em;
}
.footer-brand-row small {
  color: var(--muted);
  font-size: 10px;
}
.footer-brand > p {
  color: var(--muted);
  font-size: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav h2 {
  margin: 0 0 11px;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.footer-nav a,
.footer-nav button {
  margin: 5px 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--rose);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 19px;
  color: #927281;
  font-size: 10px;
  border-top: 1px solid rgba(165, 56, 102, 0.13);
}
.footer-bottom p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 22px;
  width: 390px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.floating-inner {
  position: relative;
  display: grid;
  gap: 9px;
}
.floating-speech-wrap {
  position: relative;
  width: 100%;
  animation: floatingCtaBounce 2.4s ease-in-out infinite;
}
.floating-person {
  position: absolute;
  z-index: 0;
  bottom: calc(100% - 20px);
  left: 50%;
  width: 220px;
  height: auto;
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(73, 22, 47, 0.2));
  transform: translateX(-50%);
}
.floating-person img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.floating-speech {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 18px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--pink-400);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(91, 22, 54, 0.22);
  backdrop-filter: blur(12px);
}
.floating-speech::after {
  position: absolute;
  z-index: -1;
  bottom: -8px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  content: "";
  background: #fff;
  border-right: 2px solid var(--pink-400);
  border-bottom: 2px solid var(--pink-400);
  transform: rotate(45deg);
}
.floating-inner > button {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(169, 47, 98, 0.3);
}
@keyframes floatingCtaBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.floating-close {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0 0 4px;
  color: var(--rose);
  font-weight: 900;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}
.floating-restore {
  display: none;
  width: 148px;
  margin-left: auto;
  padding: 11px 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.floating-cta.is-minimized {
  width: 150px;
}
.floating-cta.is-minimized .floating-inner,
.floating-cta.is-minimized .floating-close {
  display: none;
}
.floating-cta.is-minimized .floating-restore {
  display: block;
}

dialog {
  color: var(--ink);
  font-family: var(--font-body);
}
dialog::backdrop {
  background: rgba(74, 33, 52, 0.55);
  backdrop-filter: blur(5px);
}
.apply-dialog {
  width: min(calc(100% - 32px), 530px);
  padding: 48px 38px 36px;
  overflow: visible;
  text-align: center;
  background: linear-gradient(145deg, #fff, var(--pink-100));
  border: 1px solid var(--pink-300);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(72, 19, 44, 0.33);
}
.apply-dialog[open] {
  animation: dialogIn 0.24s ease both;
}
.dialog-close,
.lightbox-close {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 0 3px;
  color: var(--rose);
  font-size: 23px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.dialog-ribbon {
  position: absolute;
  top: -29px;
  left: 50%;
  width: 104px;
  height: 55px;
  transform: translateX(-50%);
}
.dialog-bow {
  inset: 0;
}
.dialog-heart {
  display: block;
  color: var(--pink-300);
  font-family: Georgia, serif;
  font-size: 50px;
  line-height: 1;
}
.apply-dialog h2 {
  margin: 3px 0 14px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 29px;
}
.apply-dialog > p:not(.section-label) {
  color: var(--muted);
  font-size: 14px;
}
.dialog-placeholder {
  display: grid;
  gap: 5px;
  margin: 22px 0;
  padding: 22px 18px;
  color: var(--berry);
  background: #fff;
  border: 2px dashed var(--pink-300);
  border-radius: 18px;
}
.dialog-placeholder span {
  color: var(--rose);
  font-size: 11px;
}
.apply-dialog .button + .button {
  margin-top: 10px;
}

.lightbox-dialog {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}
.lightbox-dialog img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
  border: 7px solid #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(42, 13, 27, 0.42);
}
.lightbox-close {
  top: -16px;
  right: -16px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  50% {
    transform: translateY(-11px) rotate(7deg);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .feature-card {
    grid-template-columns: 128px 1fr;
  }
  .feature-card figure {
    width: 128px;
    height: 170px;
  }
  .circle-photo-large {
    width: 385px;
    height: 385px;
  }
  .circle-photo-small {
    width: 210px;
    height: 210px;
  }
  .slider-button.prev {
    left: -10px;
  }
  .slider-button.next {
    right: -10px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: min(calc(100% - 38px), var(--container));
  }
  .section {
    padding: 88px 0;
  }
  .header-inner {
    width: min(calc(100% - 30px), 1260px);
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > a {
    padding: 10px 12px;
    border-radius: 10px;
  }
  .site-nav > a:hover {
    background: var(--pink-100);
  }
  .site-nav > a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 7px;
    min-height: 48px;
  }
  .hero {
    min-height: 0;
    padding: 68px 0 90px;
  }
  .hero::before {
    inset: 13px 12px;
    border-radius: 42px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-kicker {
    margin-inline: auto;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-points {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 650px);
    min-height: 540px;
    margin-inline: auto;
  }
  .hero-photo-note {
    left: 0;
  }
  .schedule-grid,
  .split-layout,
  .about-card,
  .philosophy-grid,
  .recommend-grid,
  .host-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    max-width: 700px;
    margin-inline: auto;
  }
  .split-layout,
  .host-grid,
  .future-grid {
    gap: 58px;
  }
  .split-photo {
    width: min(100%, 650px);
    min-height: 570px;
    margin-inline: auto;
  }
  .about-card {
    max-width: 750px;
    margin-inline: auto;
  }
  .about-photo {
    height: 470px;
  }
  .philosophy-grid {
    width: min(100%, 760px);
    margin-inline: auto;
  }
  .recommend-visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }
  .recommend-copy {
    max-width: 720px;
    margin-inline: auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
  .event-slider {
    grid-auto-columns: calc((100% - 22px) / 2);
  }
  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .flow-list::before {
    display: none;
  }
  .host-visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }
  .host-copy,
  .future-copy {
    max-width: 760px;
    margin-inline: auto;
  }
  .future-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-grid button:nth-child(4),
  .photo-grid button:nth-child(10) {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 74px 0;
  }
  .ribbon-bar {
    padding: 6px 35px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }
  .site-header {
    padding: 7px 0;
  }
  .brand-logo--header,
  .brand-logo--footer {
    width: 46px;
    height: 46px;
  }
  .brand-logo--about {
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }
  .logo-placeholder {
    width: 46px;
    height: 46px;
  }
  .logo-placeholder b {
    font-size: 21px;
  }
  .desktop-break {
    display: none;
  }
  .brand-copy strong {
    font-size: 20px;
  }
  .brand-copy small {
    display: none;
  }
  .site-nav {
    top: 71px;
  }
  .hero {
    padding: 51px 0 79px;
  }
  .hero::before {
    inset: 8px;
    border-radius: 32px;
  }
  .hero-copy {
    padding-inline: 12px;
  }
  .hero-small-line {
    font-size: 25px;
  }
  .hero-name {
    font-size: clamp(64px, 20vw, 92px);
  }
  .hero-jp {
    font-size: 20px;
    letter-spacing: 0.06em;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-main-photo {
    inset: 24px 32px 38px 6px;
    border-width: 7px;
  }
  .hero-small-photo {
    width: 145px;
    height: 175px;
    border-width: 6px;
  }
  .hero-photo-note {
    top: 35px;
    left: -2px;
    padding: 11px 14px;
    font-size: 10px;
  }
  .hero-photo-note b {
    font-size: 14px;
  }
  .hero-bow {
    top: 8px;
    right: 15px;
    transform: rotate(8deg) scale(0.78);
  }
  .scroll-cue {
    bottom: 15px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading h2,
  .left-title {
    font-size: 29px;
  }
  .section-heading p:last-child {
    font-size: 13px;
  }
  .mobile-only {
    display: block;
  }
  .schedule-section {
    padding-top: 42px;
  }
  .schedule-panel {
    padding: 25px 15px;
    border-radius: 28px;
  }
  .calendar-placeholder {
    min-height: 330px;
    padding: 48px 20px 28px;
  }
  .next-event-card {
    padding: 25px 20px;
  }
  .next-event-card dl > div {
    grid-template-columns: 70px 1fr;
    font-size: 13px;
  }
  .split-photo {
    min-height: 430px;
  }
  .large-photo {
    inset: 10px 3px 20px 10px;
    border-width: 7px;
  }
  .photo-sticker {
    right: -3px;
    font-size: 13px;
  }
  .about-card {
    gap: 32px;
    padding: 25px 18px;
  }
  .about-brand-row {
    align-items: flex-start;
  }
  .about-brand-row p {
    font-size: 14px;
  }
  .logo-placeholder-large {
    width: 75px;
    height: 75px;
  }
  .about-photo {
    height: 330px;
    border-width: 6px;
  }
  .philosophy-grid {
    gap: 27px;
  }
  .philosophy-copy {
    gap: 13px;
  }
  .philosophy-copy article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px;
    border-radius: 20px;
  }
  .philosophy-copy article > span {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .philosophy-copy h3 {
    font-size: 17px;
  }
  .philosophy-copy p {
    font-size: 13px;
  }
  .ambient-bow--philosophy {
    left: -24px;
    --ambient-scale: 1.35;
  }
  .recommend-visual {
    min-height: 420px;
  }
  .blob {
    inset: 38px 24px 25px 0;
  }
  .circle-photo-large {
    width: min(78vw, 340px);
    height: min(78vw, 340px);
  }
  .circle-photo-small {
    width: 155px;
    height: 155px;
    border-width: 6px;
  }
  .recommend-heart {
    font-size: 58px;
  }
  .feature-grid {
    gap: 17px;
  }
  .feature-card {
    display: block;
    padding: 22px;
  }
  .feature-card figure {
    width: 150px;
    height: 165px;
    margin: 0 auto 17px;
  }
  .feature-number {
    display: block;
    text-align: center;
  }
  .feature-card h3,
  .feature-card p {
    text-align: center;
  }
  .occupations-card {
    padding: 31px 18px;
  }
  .occupations-card h2 {
    font-size: 27px;
  }
  .event-slider {
    grid-auto-columns: 84%;
    gap: 15px;
    padding-right: 16%;
  }
  .slider-button {
    display: none;
  }
  .event-card figure {
    height: 210px;
  }
  .comparison-wrap {
    margin-inline: -2px;
    border-radius: 17px;
  }
  .comparison-wrap table {
    min-width: 650px;
    font-size: 11px;
  }
  .comparison-wrap th,
  .comparison-wrap td {
    padding: 14px 10px;
  }
  .price-card {
    padding: 38px 18px;
  }
  .price-main {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .flow-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .flow-list li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 0 17px;
    padding: 20px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
  }
  .flow-number {
    grid-column: 1;
    text-align: center;
  }
  .flow-list li > i {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 58px;
    height: 58px;
    margin: 4px 0 0;
    font-size: 23px;
  }
  .flow-list li > div {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }
  .flow-list h3 {
    font-size: 17px;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .host-visual {
    min-height: 500px;
  }
  .host-photo {
    inset: 0 3px 42px;
    border-width: 7px;
  }
  .host-name-card {
    right: 3px;
    min-width: 200px;
  }
  .host-role {
    display: block;
    line-height: 1.7;
  }
  .future-visual {
    min-height: 430px;
  }
  .future-main-photo {
    inset: 0 7px 35px 15px;
    border-width: 6px;
  }
  .future-small-photo {
    bottom: -10px;
    left: -5px;
    width: 145px;
    height: 145px;
    border-width: 5px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 155px;
    gap: 7px;
  }
  .photo-grid button {
    border-width: 3px;
    border-radius: 13px;
  }
  .photo-grid button:nth-child(1),
  .photo-grid button:nth-child(7) {
    grid-row: span 2;
  }
  .gallery-message {
    font-size: 17px;
  }
  .gallery-message strong {
    font-size: 21px;
  }
  .faq-list summary {
    min-height: 64px;
    padding: 17px;
    font-size: 14px;
    line-height: 1.65;
  }
  .faq-list details > div {
    padding: 0 17px 19px;
  }
  .final-cta {
    padding: 75px 0;
  }
  .final-cta p:not(.section-label) {
    font-size: 13px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
  .floating-cta {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .floating-inner {
    gap: 7px;
    padding: 12px 10px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--pink-200);
    box-shadow: 0 -13px 34px rgba(91, 22, 54, 0.16);
    backdrop-filter: blur(14px);
  }
  .floating-speech-wrap,
  .floating-inner > button {
    width: min(94%, 430px);
    margin-inline: auto;
  }
  .floating-person {
    bottom: calc(100% - 16px);
    width: 150px;
  }
  .floating-speech {
    padding: 8px 11px;
    font-size: 12px;
    border-radius: 16px;
  }
  .floating-inner > button {
    padding: 11px 14px;
    font-size: 12px;
  }
  .floating-close {
    top: -8px;
    right: 18px;
  }
  .floating-cta.is-minimized {
    right: 0;
    left: 0;
    width: 100%;
  }
  .floating-cta.is-minimized .floating-restore {
    width: 100%;
    padding: 14px 18px;
    border-radius: 0;
  }
  .apply-dialog {
    padding: 44px 20px 26px;
  }
  .lightbox-close {
    top: -12px;
    right: -6px;
  }
}

@media (max-width: 430px) {
  .hero-kicker {
    padding-inline: 10px;
    font-size: 11px;
  }
  .hero-small-line {
    font-size: 22px;
  }
  .hero-jp {
    font-size: 18px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .hero-small-photo {
    width: 125px;
    height: 150px;
  }
  .section-heading h2,
  .left-title {
    font-size: 26px;
  }
  .about-brand-row {
    flex-direction: column;
  }
  .circle-photo-small {
    width: 135px;
    height: 135px;
  }
  .tag-cloud span {
    padding: 6px 10px;
    font-size: 10px;
  }
  .host-visual {
    min-height: 430px;
  }
  .host-name-card {
    bottom: 0;
    padding: 11px 17px;
  }
  .future-visual {
    min-height: 370px;
  }
  .future-small-photo {
    width: 125px;
    height: 125px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

/* MINGLE event detail pages
   Scoped so the existing TOP and schedule components keep their layout. */
.event-detail-page--mingle .event-detail-main {
  padding: 0;
  background:
    radial-gradient(circle, rgba(232, 145, 159, 0.14) 1.4px, transparent 1.6px),
    linear-gradient(180deg, #fefaf9 0%, #fff8fa 100%);
  background-position: 0 0, 0 0;
  background-size: 26px 26px, auto;
}

.mingle-event-section {
  padding: 60px 0 0;
}

.event-detail-wrap {
  box-sizing: border-box;
  width: min(780px, 100%);
  padding: 0 20px 60px;
  margin-inline: auto;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  margin-bottom: 24px;
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.detail-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mingle-event-card,
.kokuchi-content {
  overflow: hidden;
  background: #fff;
}

.mingle-event-card {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(230, 194, 197, 0.68);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(107, 81, 75, 0.08);
}

.event-hero-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  appearance: none;
  cursor: zoom-in;
  background: var(--pink-50);
  border: 0;
  border-radius: 12px;
  margin-bottom: 20px;
}

.event-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.event-hero-image-button:hover .event-hero-img {
  transform: scale(1.015);
}

.event-card-tag {
  display: inline-flex;
  margin: 0;
  padding: 6px 13px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  background: var(--pink-100);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
}

.event-detail-title {
  margin: 12px 0 18px;
  color: var(--ink);
  font-family: "Shippori Mincho", serif;
  font-size: 20.8px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.event-detail-title .title-phrase {
  white-space: nowrap;
}

.keep-together {
  white-space: nowrap;
}

.event-info-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.event-info-list li {
  padding: 14px 4px;
  color: var(--text-soft, #6b514b);
  line-height: 1.85;
  border-bottom: 1px solid var(--line);
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

.event-info-list li > span {
  margin-right: 5px;
  color: var(--pink-500);
}

.event-info-list strong {
  color: var(--ink);
}

.event-detail-apply {
  margin-top: 26px;
  text-align: center;
}

.event-detail-apply .btn--apply {
  width: min(100%, 520px);
}

.kokuchi-content {
  padding: 28px;
  margin: 0;
  color: var(--ink);
  border: 1px solid rgba(230, 194, 197, 0.56);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(107, 81, 75, 0.06);
}

.kokuchi-content,
.kokuchi-content p,
.kokuchi-content li {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: pretty;
}

.kokuchi-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.kokuchi-content a {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .mingle-event-section {
    padding: 34px 0 0;
  }

  .event-detail-wrap {
    width: 100%;
    padding: 0 14px 54px;
  }

  .mingle-event-card,
  .kokuchi-content {
    border-radius: 16px;
  }

  .mingle-event-card {
    padding: 16px;
  }

  .event-hero-image-button {
    border-radius: 15px;
  }

  .event-card-tag {
    margin-top: 0;
  }

  .event-detail-title {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.6;
  }

  .event-info-list li {
    padding: 12px 2px;
    font-size: 14px;
  }

  .event-detail-apply .button {
    width: 100%;
  }

  .kokuchi-content {
    padding: 18px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .ribbon-bar,
  .site-header,
  .floating-cta,
  .scroll-cue,
  .slider-button,
  dialog {
    display: none !important;
  }
  .section {
    padding: 30px 0;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   MINGLE multi-page expansion / photo-led first view
   -------------------------------------------------------------------------- */

.site-nav {
  gap: clamp(12px, 1.35vw, 22px);
}

.site-nav > a.is-current {
  color: var(--rose);
}

.site-nav > a.is-current::after {
  right: 0;
  left: 0;
}

.has-ribbon-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-ribbon-bg > .container {
  position: relative;
  z-index: 2;
}

.ambient-bow {
  --ambient-rotate: 0deg;
  --ambient-scale: 2;
  z-index: 1;
  opacity: 0.11;
  filter: none;
  pointer-events: none;
  transform: rotate(var(--ambient-rotate)) scale(var(--ambient-scale));
  transform-origin: center;
}

.ambient-bow::before,
.ambient-bow::after {
  background: linear-gradient(
    145deg,
    rgba(249, 217, 230, 0.88),
    rgba(198, 150, 152, 0.7)
  );
  border-color: rgba(255, 255, 255, 0.55);
}

.ambient-bow > span {
  background: linear-gradient(
    145deg,
    rgba(255, 243, 246, 0.94),
    rgba(198, 150, 152, 0.64)
  );
  border-color: rgba(255, 255, 255, 0.55);
}

.ambient-bow--hero-a {
  bottom: 13%;
  left: 3%;
  --ambient-rotate: -18deg;
  --ambient-scale: 2.5;
}

.ambient-bow--hero-b {
  top: 15%;
  right: 5%;
  --ambient-rotate: 16deg;
  --ambient-scale: 1.8;
}

.ambient-bow--what {
  top: 76px;
  right: 3%;
  --ambient-rotate: 13deg;
  --ambient-scale: 2.15;
}

.ambient-bow--philosophy {
  bottom: 74px;
  left: 2%;
  opacity: 0.085;
  --ambient-rotate: -14deg;
  --ambient-scale: 2.2;
}

.ambient-bow--feature {
  bottom: 54px;
  left: 2%;
  opacity: 0.09;
  --ambient-rotate: -16deg;
  --ambient-scale: 2.45;
}

.ambient-bow--events {
  top: 72px;
  left: 2%;
  --ambient-rotate: -12deg;
  --ambient-scale: 1.85;
}

.ambient-bow--voices {
  right: 2%;
  bottom: 44px;
  --ambient-rotate: 17deg;
  --ambient-scale: 2.15;
}

.ambient-bow--faq {
  top: 80px;
  right: 2%;
  --ambient-rotate: 14deg;
  --ambient-scale: 1.9;
}

.ambient-bow--light::before,
.ambient-bow--light::after,
.ambient-bow--light > span {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero--photo {
  position: relative;
  display: grid;
  min-height: clamp(740px, calc(100svh - 94px), 920px);
  padding: 70px 0 112px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(65, 20, 42, 0.72) 0%,
      rgba(90, 30, 57, 0.54) 48%,
      rgba(72, 24, 46, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(48, 16, 33, 0.13),
      rgba(48, 16, 33, 0.18) 55%,
      rgba(48, 16, 33, 0.58)
    ),
    url("../images/web/top-view.webp") 50% 100% / cover no-repeat;
}

.hero--photo::before {
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 22%,
      rgba(255, 196, 220, 0.22),
      transparent 27%
    ),
    linear-gradient(
      90deg,
      rgba(87, 26, 54, 0.2),
      transparent 58%,
      rgba(87, 26, 54, 0.12)
    );
  border: 0;
  border-radius: 0;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.25),
    inset 0 -90px 90px rgba(61, 17, 38, 0.23);
  pointer-events: none;
}

.hero--photo::after {
  z-index: 1;
  right: -34px;
  bottom: -86px;
  color: rgba(255, 255, 255, 0.09);
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  place-items: center;
}

.hero--photo .hero-copy {
  width: min(100%, 790px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(26px, 4.2vw, 48px) clamp(20px, 5vw, 62px);
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(78, 24, 48, 0.48),
    rgba(89, 28, 54, 0.27)
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  box-shadow: 0 30px 80px rgba(36, 8, 23, 0.26);
  backdrop-filter: blur(3px);
}

.hero--photo .eyebrow {
  color: #ffe1ed;
  text-shadow: 0 2px 16px rgba(42, 8, 24, 0.5);
}

.hero-kicker-light {
  margin-inline: auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(37, 7, 21, 0.12);
}

.hero-kicker-light i {
  color: #ffd2e3;
}

.hero--photo h1,
.hero--photo .hero-small-line,
.hero--photo .hero-jp {
  color: #fff;
  text-shadow: 0 3px 24px rgba(42, 7, 24, 0.62);
}

.hero--photo .hero-small-line {
  font-size: clamp(28px, 3.5vw, 48px);
}

.hero--photo .hero-name {
  margin: 12px 0 7px;
  color: #ffd1e3;
  font-size: clamp(78px, 10vw, 136px);
  text-shadow:
    0 4px 26px rgba(48, 8, 27, 0.68),
    0 0 1px #fff;
}

.hero--photo .hero-jp {
  font-size: clamp(22px, 2.8vw, 34px);
}

.hero--photo .hero-lead {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  text-shadow: 0 2px 14px rgba(40, 8, 23, 0.58);
}

.hero--photo .hero-actions,
.hero--photo .hero-points {
  justify-content: center;
}

.hero-badges {
  gap: 13px;
  margin-top: 27px;
}

.hero-badges li {
  display: flex;
  width: 104px;
  height: 104px;
  margin: 0;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid rgba(255, 205, 225, 0.88);
  border-radius: 50%;
  box-shadow: 0 13px 28px rgba(46, 10, 28, 0.22);
  transform: rotate(-2deg);
}

.hero-badges li:nth-child(2) {
  transform: translateY(-7px) rotate(2deg);
}

.hero-badges li:nth-child(3) {
  transform: rotate(-1deg);
}

.hero-badges li > span {
  margin: 0 0 2px;
  color: var(--pink-500);
  font-size: 16px;
  line-height: 1;
}

.hero-badges strong,
.hero-badges small {
  display: block;
  line-height: 1.35;
}

.hero-badges strong {
  font-size: 14px;
}

.hero-badges small {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.hero--photo .button-primary {
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  box-shadow: 0 13px 30px rgba(47, 7, 27, 0.34);
}

.hero--photo .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero--photo .hero-heart {
  z-index: 1;
  color: rgba(255, 255, 255, 0.14);
}

.hero--photo .ambient-bow {
  z-index: 1;
  opacity: 0.25;
}

.hero-view-photo {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 28px;
  display: inline-flex;
  padding: 9px 14px;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: zoom-in;
  background: rgba(57, 14, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-view-photo span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero--photo .scroll-cue {
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 10px rgba(35, 4, 19, 0.65);
}

.lightbox-enabled {
  cursor: zoom-in;
}

.lightbox-enabled:focus-visible {
  outline: 4px solid rgba(211, 65, 125, 0.55);
  outline-offset: -5px;
}

figure:hover > .lightbox-enabled {
  transform: scale(1.018);
}

figure > .lightbox-enabled {
  transition: transform 0.28s ease;
}

.section-link-row {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

/* Shared subpage elements */

.subpage-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 76px 0 70px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(76, 20, 46, 0.76), rgba(113, 38, 70, 0.46)),
    linear-gradient(0deg, rgba(49, 12, 29, 0.46), transparent 65%);
}

.page-hero::after {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -105px;
  color: rgba(255, 255, 255, 0.12);
  content: "♡";
  font-family: Georgia, serif;
  font-size: clamp(220px, 28vw, 410px);
  line-height: 1;
  transform: rotate(12deg);
}

.page-hero--profile {
  background-image: url("../images/主催/その他いろいろ/LINE_ALBUM_舞　素材_260819_49.jpg");
  background-position: 72% 42%;
}

.page-hero--schedule {
  background-image: url("../images/web/schedule-hero.webp");
  background-position: 50% 48%;
}

.page-hero--guide {
  background-image: url("../images/web/guide-hero.webp");
  background-position: 50% 62%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 900px);
  margin-inline: auto;
  text-align: center;
}

.breadcrumb {
  display: flex;
  margin: 0 0 17px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero .section-label {
  margin-bottom: 9px;
  color: #ffd8e7;
  text-shadow: 0 2px 12px rgba(44, 7, 24, 0.55);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 23px rgba(41, 6, 22, 0.7);
}

.page-hero p:last-child {
  margin: 18px auto 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  text-shadow: 0 2px 14px rgba(41, 6, 22, 0.6);
}

.page-hero-ribbon {
  top: 42px;
  right: 7%;
  z-index: 2;
  transform: rotate(12deg) scale(1.45);
}

.subpage-section {
  position: relative;
  padding: 92px 0;
  scroll-margin-top: 98px;
}

.subpage-section:nth-child(odd) {
  background: rgba(255, 255, 255, 0.54);
}

.guide-main > .subpage-section {
  background: rgba(255, 255, 255, 0.54);
}

.guide-main > .subpage-section.section-pink {
  background: linear-gradient(
    180deg,
    rgba(255, 237, 245, 0.79),
    rgba(255, 250, 252, 0.95)
  );
}

.schedule-main > .subpage-section {
  background: rgba(255, 255, 255, 0.54);
}

.schedule-main > .subpage-section.section-pink {
  background: linear-gradient(
    180deg,
    rgba(255, 237, 245, 0.79),
    rgba(255, 250, 252, 0.95)
  );
}

.schedule-hero-month {
  display: block;
  margin-bottom: 4px;
  color: #ffd8e7;
  font-family: var(--font-display);
  font-size: 0.4em;
  letter-spacing: 0.12em;
}

.schedule-main h1,
.schedule-main h2,
.schedule-main h3 {
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.schedule-main p,
.schedule-main li,
.schedule-main td {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.subpage-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.subpage-heading h2 {
  margin: 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.45;
}

.subpage-heading > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.page-intro-grid,
.profile-story-grid,
.schedule-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 74px);
}

.profile-portrait-card,
.story-photo,
.support-photo {
  position: relative;
  margin: 0;
}

.profile-portrait-card img,
.story-photo img,
.support-photo img {
  width: 100%;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.profile-portrait-card img {
  height: 610px;
  object-position: 50% 22%;
  border-radius: 46% 46% 28% 28% / 34% 34% 22% 22%;
}

.profile-portrait-card .bow {
  top: -24px;
  right: -14px;
  transform: rotate(10deg) scale(1.05);
}

.profile-intro-copy h2,
.story-copy h2,
.schedule-copy h2,
.contact-copy h2 {
  margin: 0 0 22px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.45;
}

.profile-intro-copy > p,
.story-copy > p,
.schedule-copy > p,
.contact-copy > p,
.prose-card p {
  color: #674c5a;
  line-height: 2;
}

.profile-catch {
  display: inline-flex;
  margin: 0 0 15px;
  padding: 7px 14px;
  color: var(--rose) !important;
  font-size: 12px;
  font-weight: 900;
  background: var(--pink-100);
  border-radius: 999px;
}

.profile-name-large {
  display: flex;
  margin: 18px 0 28px;
  align-items: baseline;
  gap: 14px;
  color: var(--berry);
}

.profile-name-large strong {
  font-family: var(--font-serif);
  font-size: 34px;
}

.profile-name-large small {
  color: var(--pink-600);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.profile-main h1,
.profile-main h2,
.profile-main h3 {
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.profile-main p,
.profile-main li,
.profile-main td {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.data-table-wrap {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 16px 19px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(187, 75, 120, 0.13);
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  width: 31%;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 233, 242, 0.62);
}

.data-table td {
  color: #654b59;
  font-size: 13px;
  line-height: 1.75;
}

.fill-later {
  display: inline-flex;
  padding: 3px 9px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  background: var(--pink-100);
  border: 1px dashed var(--pink-400);
  border-radius: 999px;
}

.story-photo img {
  height: 520px;
  object-position: 50% 50%;
  border-radius: 38px 38px 110px 38px;
}

.profile-quote {
  position: relative;
  margin: 26px 0;
  padding: 22px 24px 22px 30px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  background: linear-gradient(145deg, #fff9fa, var(--pink-150));
  border: 1px dashed var(--pink-400);
  border-radius: 19px;
}

.profile-quote::before {
  position: absolute;
  top: 13px;
  left: 12px;
  color: var(--pink-400);
  content: "“";
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.profile-strength-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
  gap: 20px;
}

.profile-message-grid {
  align-items: center;
}

.story-photo--message img {
  height: 650px;
  object-position: 76% 42%;
  border-radius: 110px 38px 38px 38px;
}

.profile-message-list {
  display: grid;
  margin: 24px 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.profile-message-list li {
  position: relative;
  padding: 13px 16px 13px 46px;
  color: #674c5a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.profile-message-list li::before {
  position: absolute;
  top: 12px;
  left: 17px;
  color: var(--pink-600);
  content: "♡";
  font-family: Georgia, serif;
  font-size: 18px;
}

.value-grid,
.event-placeholder-grid,
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card,
.schedule-event-card,
.info-card,
.prose-card {
  position: relative;
  padding: 29px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: var(--soft-shadow);
}

.value-card::before,
.info-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  place-items: center;
  color: #fff;
  content: "♡";
  font-family: Georgia, serif;
  font-size: 20px;
  background: linear-gradient(145deg, var(--pink-400), var(--pink-600));
  border-radius: 50%;
}

.value-card h3,
.schedule-event-card h3,
.info-card h3,
.prose-card h3 {
  margin: 0 0 11px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
}

.value-card p,
.info-card p,
.schedule-event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.profile-timeline {
  position: relative;
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  gap: 17px;
}

.profile-timeline::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 68px;
  width: 2px;
  content: "";
  background: repeating-linear-gradient(
    180deg,
    var(--pink-400) 0 10px,
    transparent 10px 18px
  );
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.timeline-row time {
  position: relative;
  z-index: 1;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.timeline-row time::after {
  position: absolute;
  top: 3px;
  right: -2px;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--pink-500);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pink-300);
}

.timeline-row p {
  margin: 0;
  color: #674d5a;
  font-size: 13px;
  line-height: 1.8;
}

.host-mini-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: 980px;
  margin: 46px auto 0;
  gap: 14px;
}

.host-mini-gallery figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 27px;
}

.host-mini-gallery figure:nth-child(2) {
  margin-top: 42px;
}

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

.host-mini-gallery figure:first-child img {
  object-position: 52% 52%;
}

.host-mini-gallery figure:last-child img {
  object-position: 50% 40%;
}

.anchor-nav {
  display: flex;
  width: min(calc(100% - 48px), 1040px);
  margin: -30px auto 0;
  padding: 17px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transform: translateY(50%);
}

.anchor-nav a {
  padding: 8px 13px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  background: var(--pink-100);
  border-radius: 999px;
}

.schedule-intent-card {
  max-width: 900px;
  margin: 0 auto 76px;
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(255, 191, 216, 0.34),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 240, 246, 0.94)
    );
  border: 1px solid var(--pink-300);
  border-radius: 32px;
  box-shadow: var(--soft-shadow);
}

.schedule-intent-card h2 {
  margin: 0;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(27px, 4vw, 41px);
  line-height: 1.5;
}

.schedule-intent-card > p:last-of-type {
  max-width: 700px;
  margin: 18px auto 0;
  color: #674e5b;
  font-size: 14px;
  line-height: 2;
}

.schedule-intent-actions,
.schedule-month-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.schedule-calendar-heading {
  margin-bottom: 34px;
}

.schedule-month-card {
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.schedule-month-label {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 7px 14px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--pink-100);
  border-radius: 999px;
}

.schedule-calendar-button {
  position: relative;
  display: block;
  width: min(100%, 660px);
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #f9edf2;
  border: 5px solid #fff;
  border-radius: 24px;
  outline: 1px solid var(--pink-300);
  box-shadow: 0 18px 44px rgba(97, 31, 62, 0.16);
}

.schedule-calendar-button img {
  display: block;
  width: 100%;
  height: auto;
}

.calendar-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  padding: 9px 14px;
  align-items: center;
  gap: 7px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--pink-300);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.calendar-zoom-hint b {
  color: var(--rose);
  font-size: 18px;
  line-height: 0.8;
}

.schedule-time-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  margin-top: 28px;
  padding: 22px 24px;
  align-items: center;
  gap: 20px;
  background: linear-gradient(145deg, #fff9fa, var(--pink-150));
  border: 1px solid var(--pink-300);
  border-radius: 22px;
}

.schedule-time-summary > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.schedule-summary-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 21px;
  background: linear-gradient(145deg, var(--pink-500), var(--rose));
  border-radius: 50%;
}

.schedule-time-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.schedule-time-summary strong {
  display: block;
  color: var(--berry);
  font-size: 14px;
}

.schedule-date-pills {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.schedule-date-pills li {
  padding: 8px 12px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--pink-300);
  border-radius: 999px;
}

.schedule-event-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 110px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.schedule-event-card:hover {
  box-shadow: 0 17px 42px rgba(112, 37, 70, 0.16);
  transform: translateY(-6px);
}

.schedule-event-card:target {
  outline: 3px solid var(--pink-400);
  outline-offset: 5px;
}

.schedule-event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--pink-100);
}

.schedule-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 67px;
  min-height: 82px;
  margin: 0;
  padding: 7px 5px;
  place-items: center;
  color: var(--berry);
  line-height: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--pink-300);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.event-date-badge small,
.event-date-badge span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.event-date-badge strong {
  font-family: var(--font-serif);
  font-size: 29px;
}

.event-status-badge {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 11px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}

.schedule-event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.event-category {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 900;
  background: var(--pink-100);
  border-radius: 999px;
}

.event-meta-list {
  display: grid;
  margin: 17px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.event-meta-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  color: #6f5563;
  font-size: 12px;
  line-height: 1.6;
}

.event-meta-list strong {
  color: var(--rose);
  white-space: nowrap;
}

.event-meta-list span {
  min-width: 0;
  overflow-wrap: break-word;
}

.schedule-main .data-table th {
  word-break: keep-all;
}

.schedule-event-actions {
  margin-top: auto;
  padding-top: 21px;
}

.schedule-event-actions .button {
  width: 100%;
  min-height: 47px;
  padding: 12px 14px;
  font-size: 12px;
}

.schedule-month-nav {
  display: flex;
  margin-top: 25px;
  padding-top: 21px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid var(--line);
}

.schedule-month-nav span {
  padding: 8px 13px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  background: var(--pink-100);
  border-radius: 999px;
}

.schedule-month-nav .is-disabled {
  color: #a48a97;
  background: #f6f0f3;
}

.flow-cards-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-inline: auto;
  gap: 22px;
}

.flow-mini-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 34px 30px 29px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.91);
  border: 2px solid #fff;
  border-radius: 27px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.flow-mini-card:hover {
  box-shadow: 0 16px 38px rgba(112, 37, 70, 0.14);
  transform: translateY(-5px);
}

.flow-mini-card .step-number {
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0 auto 13px;
  padding: 7px 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, var(--pink-500), var(--rose));
  border-radius: 999px;
  box-shadow: 0 7px 16px rgba(175, 52, 103, 0.22);
}

.flow-mini-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 15px;
  place-items: center;
  color: var(--rose);
  font-size: 29px;
  background: var(--pink-100);
  border: 1px solid var(--pink-300);
  border-radius: 50%;
}

.flow-mini-card h3 {
  margin: 0 0 10px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 20px;
}

.flow-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.flow-inline-link,
.flow-inline-button {
  margin-top: auto;
  padding: 9px 15px;
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  background: var(--pink-100);
  border: 1px solid var(--pink-300);
  border-radius: 999px;
}

.flow-bottom-action {
  margin-top: 39px;
  text-align: center;
}

.guide-faq {
  max-width: 900px;
  margin: 0 auto;
}

.guide-faq details {
  background: rgba(255, 255, 255, 0.94);
}

.rules-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.rules-list li {
  position: relative;
  padding: 15px 18px 15px 52px;
  color: #634b57;
  font-size: 13px;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.rules-list li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  content: "♡";
  font-family: Georgia, serif;
  background: var(--pink-500);
  border-radius: 50%;
}

.notice-box {
  margin-top: 24px;
  padding: 19px 22px;
  color: #6c4d5d;
  font-size: 13px;
  line-height: 1.85;
  background: linear-gradient(145deg, #fff9fa, var(--pink-150));
  border: 1px dashed var(--pink-400);
  border-radius: 19px;
}

.contact-layout {
  align-items: stretch;
}

.contact-placeholder-card {
  display: grid;
  min-height: 330px;
  padding: 35px;
  place-items: center;
  text-align: center;
  background: linear-gradient(150deg, #fff, #fff0f6);
  border: 2px dashed var(--pink-400);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.contact-placeholder-card .logo-placeholder {
  width: 74px;
  height: 74px;
}

.contact-placeholder-card strong {
  display: block;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 24px;
}

.contact-placeholder-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.legal-table-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
}

.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 18px 21px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(186, 69, 117, 0.14);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  width: 27%;
  color: var(--rose);
  font-size: 12px;
  background: rgba(255, 232, 241, 0.7);
}

.legal-table td {
  color: #654d59;
  font-size: 13px;
  line-height: 1.8;
}

.prose-card {
  max-width: 920px;
  margin: 0 auto;
}

.prose-card h3:not(:first-child) {
  margin-top: 27px;
}

.prose-card p,
.prose-card li {
  color: #674e5b;
  font-size: 13px;
  line-height: 1.9;
}

.prose-card ul {
  padding-left: 1.4em;
}

.shared-page-cta {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #704553, #875161 58%, #945c6e);
}

.shared-page-cta::before {
  position: absolute;
  top: -135px;
  left: -48px;
  color: rgba(255, 255, 255, 0.1);
  content: "♡";
  font-family: Georgia, serif;
  font-size: 350px;
  line-height: 1;
  transform: rotate(-16deg);
}

.shared-page-cta .container {
  position: relative;
  z-index: 1;
}

.shared-page-cta .section-label {
  color: #fff;
}

.shared-page-cta h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(31px, 4.4vw, 52px);
}

.shared-page-cta p {
  margin: 0 0 25px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .hero--photo {
    min-height: 780px;
    background-position: 52% 48%;
  }

  .hero--photo .hero-copy {
    width: min(100%, 720px);
  }

  .page-intro-grid,
  .profile-story-grid,
  .schedule-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-portrait-card {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .profile-portrait-card img {
    height: 640px;
  }

  .value-grid,
  .profile-strength-grid,
  .event-placeholder-grid,
  .info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-cards-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ambient-bow {
    opacity: 0.07;
  }

  .ambient-bow--secondary,
  .ambient-bow--feature,
  .ambient-bow--voices {
    display: none;
  }

  .ambient-bow--what {
    right: -28px;
    --ambient-scale: 1.4;
  }

  .ambient-bow--events {
    left: -28px;
    --ambient-scale: 1.32;
  }

  .ambient-bow--faq {
    right: -24px;
    --ambient-scale: 1.3;
  }

  .hero--photo {
    min-height: 735px;
    padding: 42px 0 118px;
    background-position: 52% 48%;
  }

  .hero--photo .hero-copy {
    padding: 27px 17px;
    border-radius: 29px;
  }

  .hero--photo .hero-small-line {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero--photo .hero-name {
    font-size: clamp(66px, 22vw, 92px);
  }

  .hero--photo .hero-jp {
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .hero--photo .hero-lead {
    font-size: 13px;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-badges li {
    width: 82px;
    height: 82px;
    padding: 6px;
    border-width: 2px;
  }

  .hero-badges strong {
    font-size: 11px;
  }

  .hero-badges small {
    font-size: 10px;
  }

  .hero--photo .hero-actions {
    gap: 8px;
  }

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

  .hero-view-photo {
    right: auto;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero--photo .scroll-cue {
    bottom: 8px;
  }

  .page-hero {
    min-height: 360px;
    padding: 62px 0 56px;
  }

  .page-hero-inner {
    width: min(calc(100% - 36px), 900px);
  }

  .page-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .page-hero p:last-child {
    font-size: 13px;
  }

  .page-hero-ribbon {
    top: 30px;
    right: 2%;
    transform: rotate(12deg) scale(1);
  }

  .anchor-nav {
    width: min(calc(100% - 30px), 1040px);
    margin-top: -24px;
    padding: 13px;
    transform: translateY(38%);
  }

  .subpage-section {
    padding: 72px 0;
  }

  .subpage-heading {
    margin-bottom: 34px;
  }

  .profile-portrait-card img {
    height: min(125vw, 590px);
    object-position: 50% 18%;
    border-width: 6px;
  }

  .profile-intro-copy h2,
  .story-copy h2,
  .schedule-copy h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table th {
    padding-bottom: 7px;
    border-bottom: 0;
  }

  .data-table td {
    padding-top: 7px;
  }

  .story-photo img {
    height: 440px;
    border-width: 6px;
  }

  .story-photo--message img {
    height: min(128vw, 620px);
  }

  .value-grid,
  .profile-strength-grid,
  .event-placeholder-grid,
  .info-card-grid,
  .flow-cards-four {
    grid-template-columns: 1fr;
  }

  .profile-timeline::before {
    left: 39px;
  }

  .timeline-row {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 19px 16px;
  }

  .timeline-row time::after {
    right: -2px;
  }

  .host-mini-gallery {
    grid-template-columns: 1fr;
  }

  .host-mini-gallery figure,
  .host-mini-gallery figure:nth-child(2) {
    height: 340px;
    margin-top: 0;
  }

  .schedule-intent-card {
    margin-bottom: 58px;
    padding: 28px 19px;
    border-radius: 24px;
  }

  .schedule-intent-card h2 {
    font-size: 27px;
  }

  .schedule-intent-card > p:last-of-type {
    font-size: 13px;
  }

  .schedule-intent-actions .button,
  .schedule-month-actions .button {
    width: 100%;
  }

  .schedule-month-card {
    padding: 20px 14px 24px;
    border-radius: 24px;
  }

  .schedule-calendar-button {
    border-width: 3px;
    border-radius: 18px;
  }

  .calendar-zoom-hint {
    right: 8px;
    bottom: 8px;
    padding: 7px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .schedule-time-summary {
    grid-template-columns: 1fr;
    padding: 19px 16px;
    gap: 15px;
  }

  .schedule-date-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .schedule-date-pills li {
    text-align: center;
  }

  .schedule-event-image {
    height: 215px;
  }

  .schedule-event-body {
    padding: 22px 19px;
  }

  .event-meta-list li {
    grid-template-columns: 58px 1fr;
  }

  .flow-mini-card {
    min-height: 280px;
    padding: 30px 22px 25px;
  }

  .schedule-layout .calendar-placeholder {
    min-height: 430px;
  }

  .contact-placeholder-card {
    min-height: 290px;
    padding: 27px 20px;
  }

  .legal-table th,
  .legal-table td {
    padding: 15px;
  }
}

@media (max-width: 430px) {
  .hero--photo {
    min-height: 720px;
  }

  .hero--photo .hero-kicker {
    font-size: 10px;
  }

  .hero--photo .hero-name {
    font-size: 64px;
  }

  .page-hero--profile h1 {
    font-size: clamp(30px, 8.5vw, 36px);
    white-space: nowrap;
  }

  .hero-badges li {
    width: 76px;
    height: 76px;
  }

  .subpage-heading h2 {
    font-size: 28px;
  }

  .profile-name-large {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .profile-timeline::before {
    display: none;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-row time::after {
    display: none;
  }
}

/* =========================================================
   EVENT DETAIL — 2026.09
========================================================= */
.event-detail-page {
  background: var(--cream);
}

.event-detail-main {
  overflow: hidden;
}

.event-detail-hero {
  padding: 42px 0 82px;
  background:
    radial-gradient(circle at 9% 15%, rgba(246, 198, 210, 0.54), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(201, 167, 160, 0.2), transparent 25%),
    linear-gradient(180deg, #fefafa 0%, #f9e3e9 100%);
}

.event-detail-breadcrumb {
  margin: 0 0 24px;
  color: var(--muted);
}

.event-detail-breadcrumb a {
  color: var(--rose);
}

.event-detail-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 150, 152, 0.34);
  border-radius: 40px;
  box-shadow: 0 26px 70px rgba(118, 76, 82, 0.15);
}

.event-detail-cover,
.event-detail-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--pink-100);
  border: 0;
  cursor: zoom-in;
}

.event-detail-cover {
  border: 8px solid #fff;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(105, 66, 72, 0.18);
  transform: rotate(-0.7deg);
}

.event-detail-cover img,
.event-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.event-detail-cover > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 12px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}

.event-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.event-detail-tags span {
  padding: 6px 10px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  background: var(--pink-100);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.event-detail-hero-copy h1 {
  margin: 8px 0 18px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.45;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.event-detail-lead,
.event-detail-section p,
.event-detail-meta dd,
.event-detail-check-grid li {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  .event-detail-lead,
  .event-detail-section p,
  .event-detail-meta dd,
  .event-detail-check-grid li {
    word-break: auto-phrase;
  }
}

.event-detail-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.event-detail-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.event-detail-meta > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.event-detail-meta dt {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.event-detail-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.event-detail-status {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding: 13px 15px;
  background: #fff6f8;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.event-detail-status span {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  background: var(--rose);
  border-radius: 999px;
}

.event-detail-status p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.event-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.event-detail-section {
  padding: 88px 0;
}

.event-detail-section--pink {
  background: linear-gradient(180deg, #fff8fa 0%, #f9e1e8 100%);
}

.event-detail-content-card {
  max-width: 920px;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
}

.event-detail-content-card h2,
.event-detail-copy h2,
.event-detail-location h2,
.event-organizer-card h2,
.event-detail-rules h2 {
  margin: 5px 0 20px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.5;
  text-wrap: balance;
}

.event-detail-content-card p,
.event-detail-copy p,
.event-detail-location p,
.event-organizer-card p,
.event-detail-rules p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.event-detail-intro {
  color: var(--rose) !important;
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.3vw, 25px) !important;
  font-weight: 700;
  line-height: 1.8 !important;
}

.event-detail-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.event-detail-photo {
  border: 8px solid #fff;
  border-radius: 38% 62% 42% 58% / 55% 39% 61% 45%;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.event-detail-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-detail-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.event-detail-check-grid li {
  position: relative;
  padding: 17px 18px 17px 50px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(118, 76, 82, 0.07);
}

.event-detail-check-grid li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--rose);
  font-size: 19px;
  content: "♡";
}

.event-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.event-ticket-card {
  padding: 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.event-ticket-card--accent {
  background: linear-gradient(160deg, #fff 0%, #f9d9e6 100%);
  border-color: var(--pink-400);
}

.event-ticket-card > span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.event-ticket-card h3 {
  margin: 7px 0 10px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 21px;
}

.event-ticket-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.event-ticket-price {
  color: var(--rose) !important;
}

.event-ticket-price strong {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.event-ticket-grid + .notice-box {
  max-width: 820px;
  margin: 28px auto 0;
}

.event-day-flow {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 38px auto 0;
  padding: 0;
  list-style: none;
}

.event-day-flow::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 29px;
  width: 2px;
  background: linear-gradient(var(--pink-400), var(--rose));
  content: "";
}

.event-day-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding-bottom: 24px;
}

.event-day-flow li > span {
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-600), var(--rose));
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.event-day-flow li > div {
  padding: 17px 21px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.event-day-flow h3 {
  margin: 0 0 4px;
  color: var(--berry);
  font-family: var(--font-serif);
  font-size: 20px;
}

.event-day-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.event-detail-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.event-location-note {
  padding: 22px;
  background: #fdf1f4;
  border: 1px dashed var(--pink-500);
  border-radius: 20px;
}

.event-location-note strong {
  color: var(--rose);
}

.event-location-note p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.85;
}

.event-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.event-detail-gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
}

.event-organizer-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.event-organizer-card > img {
  width: 100%;
  max-height: 490px;
  object-fit: cover;
  object-position: center top;
  border: 8px solid #fff;
  border-radius: 30px 30px 45% 45%;
  box-shadow: var(--soft-shadow);
}

.event-organizer-card h2 small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.event-detail-faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 32px auto 0;
}

.event-detail-faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(118, 76, 82, 0.06);
}

.event-detail-faq summary {
  position: relative;
  padding: 19px 54px 19px 22px;
  color: var(--berry);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.event-detail-faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--rose);
  font-size: 21px;
  content: "+";
  transform: translateY(-50%);
}

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

.event-detail-faq details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.event-detail-rules {
  color: #fff;
  background: linear-gradient(135deg, #745952 0%, #8e6d67 52%, #a37e78 100%);
}

.event-detail-rules .section-label,
.event-detail-rules h2,
.event-detail-rules p,
.event-detail-rules li {
  color: #fff;
}

.event-detail-rules .container {
  max-width: 880px;
}

.event-detail-rules ul {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding-left: 1.3em;
  line-height: 1.8;
}

.event-detail-rule-note {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
}

.event-detail-final-cta .section-label {
  color: #fff;
}

@media (max-width: 980px) {
  .event-detail-hero-card,
  .event-detail-two-column,
  .event-detail-location,
  .event-organizer-card {
    grid-template-columns: 1fr;
  }

  .event-detail-cover {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .event-detail-two-column .event-detail-photo {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .event-organizer-card > img {
    width: min(100%, 440px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .event-detail-hero {
    padding: 28px 0 58px;
  }

  .event-detail-hero-card {
    gap: 25px;
    padding: 16px;
    border-radius: 28px;
  }

  .event-detail-cover {
    border-width: 5px;
    border-radius: 22px;
    transform: none;
  }

  .event-detail-cover > span {
    right: 9px;
    bottom: 9px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .event-detail-hero-copy {
    padding: 0 5px 8px;
  }

  .event-detail-hero-copy h1 {
    font-size: clamp(27px, 8vw, 35px);
    line-height: 1.5;
  }

  .event-detail-meta > div {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .event-detail-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-detail-actions .button {
    width: 100%;
  }

  .event-detail-section {
    padding: 66px 0;
  }

  .event-detail-content-card {
    width: calc(100% - 32px);
    border-radius: 26px;
  }

  .event-detail-check-grid,
  .event-ticket-grid,
  .event-detail-gallery {
    grid-template-columns: 1fr;
  }

  .event-detail-check-grid li {
    padding-right: 15px;
  }

  .event-day-flow li {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .event-day-flow::before {
    left: 25px;
  }

  .event-day-flow li > span {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }

  .event-day-flow li > div {
    padding: 15px 16px;
  }

  .event-detail-location,
  .event-organizer-card {
    padding: 24px 19px;
    border-radius: 26px;
  }

  .event-detail-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 430px) {
  .event-detail-tags {
    gap: 5px;
  }

  .event-detail-tags span {
    padding: 5px 8px;
    font-size: 9px;
  }

  .event-detail-hero-copy h1 {
    font-size: 26px;
  }

  .event-detail-content-card h2,
  .event-detail-copy h2,
  .event-detail-location h2,
  .event-organizer-card h2,
  .event-detail-rules h2 {
    font-size: 28px;
  }
}
