:root {
  --ink: #172747;
  --ink-soft: #4a5674;
  --deep: #22345f;
  --mint: #f9dce8;
  --mint-light: #fff2f4;
  --coral: #f28a39;
  --coral-dark: #d94f7e;
  --cream: #fff9f3;
  --gold: #ec9c43;
  --line: rgba(23, 39, 71, 0.16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5dce5;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px),
    #f9e4ea;
  background-size: 64px 64px, 52px 52px;
  font-family: var(--sans);
  line-height: 1.8;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-shell {
  width: min(100%, 960px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(23, 39, 71, 0.14);
}

.announcement {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.4rem 1rem;
  color: #fff;
  background: var(--deep);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.site-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(255, 250, 243, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.3vw, 1.38rem);
  letter-spacing: 0.15em;
}

.brand small {
  margin-top: -0.2rem;
  color: var(--ink-soft);
  font-size: 0.56rem;
  letter-spacing: 0.17em;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-link span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.03fr);
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 50%),
    var(--mint);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(217, 79, 126, 0.22);
  border-radius: 50%;
}

.hero::before {
  top: -110px;
  left: -160px;
  width: 430px;
  height: 430px;
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.13),
    0 0 0 78px rgba(255, 255, 255, 0.08);
}

.hero::after {
  right: 39%;
  bottom: -95px;
  width: 240px;
  height: 240px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3.6rem 1rem 4rem clamp(2rem, 6vw, 4.8rem);
}

.hero-en {
  margin: 0 0 0.8rem;
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.15rem;
  padding: 0.38rem 0.75rem 0.38rem 0.9rem;
  border: 1px solid var(--coral);
  border-radius: 999px;
  color: var(--coral-dark);
  background: rgba(255, 250, 243, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.event-badge strong {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-lead {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.8vw, 1.12rem);
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  margin-top: 0.25rem;
  color: var(--coral-dark);
  font-size: 0.55em;
  letter-spacing: 0.04em;
}

.hero-date {
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  margin: 2.2rem 0 0;
  font-family: Georgia, serif;
}

.hero-date-year {
  margin-right: 0.15rem;
  padding-right: 0.6rem;
  border-right: 1px solid currentColor;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.hero-date strong {
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.hero-date small {
  font-family: var(--sans);
  font-size: 0.63rem;
}

.hero-date i {
  margin: 0 0.15rem;
  font-style: normal;
}

.hero-note {
  margin: 0.4rem 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
}

.hero-phone {
  display: flex;
  width: min(100%, 325px);
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(23, 39, 71, 0.38);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-phone:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero-phone small,
.hero-phone strong {
  display: block;
}

.hero-phone small {
  margin-bottom: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-phone strong {
  font-family: Georgia, serif;
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-phone em {
  color: var(--ink-soft);
  font-size: 0.54rem;
  font-style: normal;
  white-space: nowrap;
}

.primary-button {
  display: flex;
  width: min(100%, 325px);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.3rem 0.9rem 1.55rem;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(242, 138, 57, 0.22);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
}

.primary-button span:last-child {
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--mint) 0, transparent 16%),
    linear-gradient(0deg, rgba(23, 39, 71, 0.16), transparent 35%);
  pointer-events: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ribbon {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  bottom: 2rem;
  display: flex;
  width: 136px;
  height: 136px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #fff;
  background: rgba(23, 39, 71, 0.86);
  backdrop-filter: blur(7px);
  line-height: 1.25;
}

.hero-ribbon span,
.hero-ribbon small {
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.hero-ribbon strong {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  top: 0.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
}

.hero-slide-controls {
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  left: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.55rem 0.42rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(23, 39, 71, 0.62);
  backdrop-filter: blur(8px);
}

.hero-slide-dots {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.hero-slide-dots button {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-slide-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-slide-dots button.is-active span {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

.hero-slide-toggle {
  min-width: 38px;
  min-height: 26px;
  padding: 0 0.45rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero-slide-dots button:focus-visible,
.hero-slide-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.vertical-message {
  position: absolute;
  z-index: 3;
  top: 3rem;
  right: calc(50% - 0.75rem);
  margin: 0;
  padding: 1rem 0.48rem;
  color: #fff;
  background: var(--deep);
  font-family: var(--serif);
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.quick-nav a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(0.67rem, 1.6vw, 0.83rem);
}

.quick-nav a:last-child {
  border-right: 0;
}

.quick-nav span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.65rem;
}

.section-pad {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.4rem, 7vw, 5.7rem);
}

.intro {
  position: relative;
  text-align: center;
  background:
    radial-gradient(circle at 5% 15%, rgba(217, 79, 126, 0.11) 0 2px, transparent 3px),
    radial-gradient(circle at 95% 85%, rgba(242, 138, 57, 0.12) 0 3px, transparent 4px),
    #fff9f3;
  background-size: 46px 46px, 58px 58px;
}

.brush-script {
  margin: 0 0 1.2rem;
  color: var(--coral);
  font-family: "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(1.2rem, 3.2vw, 2.05rem);
}

.intro h2,
.section-heading h2,
.support h2,
.reservation-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.intro h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.75rem);
  line-height: 1.65;
}

.intro h2 em {
  color: var(--coral);
  font-style: normal;
  font-size: 1.25em;
}

.intro > p:not(.brush-script) {
  max-width: 650px;
  margin: 1.8rem auto 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 2.25;
}

.target-years {
  display: flex;
  width: min(100%, 610px);
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 2.5rem auto 0;
  border: 1px solid var(--deep);
}

.target-years span {
  flex: 1;
  padding: 0.72rem 0.35rem;
  border-right: 1px solid var(--deep);
  font-family: Georgia, serif;
  font-size: clamp(0.82rem, 2vw, 1rem);
}

.target-years small {
  padding: 0 1rem;
  color: #fff;
  background: var(--deep);
  align-self: stretch;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.contract-benefits {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.8) 0 70px, transparent 71px),
    radial-gradient(circle at 92% 88%, rgba(242, 138, 57, 0.14) 0 120px, transparent 121px),
    linear-gradient(145deg, #ffe4ed, #fff0df);
}

.contract-benefit-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.contract-benefit-heading > p:first-child {
  margin: 0 0 0.65rem;
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
}

.contract-benefit-heading > span {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.36rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contract-benefit-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.8vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.contract-benefit-heading h2 em {
  color: var(--coral-dark);
  font-style: normal;
  font-size: 1.22em;
}

.contract-benefit-heading > p:last-child {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.contract-benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contract-benefit-grid article {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 39, 71, 0.13);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(78, 48, 70, 0.08);
}

.contract-benefit-grid article:nth-child(2n) {
  background: rgba(255, 249, 240, 0.92);
}

.contract-benefit-image {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(23, 39, 71, 0.1);
  background: #fff9f3;
}

.contract-benefit-grid article:nth-child(2n) .contract-benefit-image {
  order: 2;
  border-right: 0;
  border-left: 1px solid rgba(23, 39, 71, 0.1);
}

.contract-benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contract-benefit-image span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral-dark);
  box-shadow: 0 8px 18px rgba(23, 39, 71, 0.15);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.contract-benefit-grid article:nth-child(2n) .contract-benefit-image span {
  background: var(--coral);
}

.contract-benefit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.contract-benefit-grid article:nth-child(2n) .contract-benefit-copy {
  order: 1;
}

.contract-benefit-copy > p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.contract-benefit-copy > p span {
  color: var(--coral);
  font-size: 0.78rem;
}

.contract-benefit-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.8vw, 1.48rem);
  font-weight: 700;
  line-height: 1.45;
}

.contract-benefit-grid small {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.7;
}

.contract-benefit-note {
  margin: 1.2rem 0 1.8rem;
  color: var(--ink-soft);
  font-size: 0.6rem;
  line-height: 1.8;
}

.contract-benefit-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contract-benefits .primary-button {
  margin: 0 auto;
}

.benefits {
  color: var(--ink);
  background: #f9cfdd;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.section-heading > p,
.support-kicker,
.reservation-intro > p:first-child,
.shop-heading > p {
  margin: 0 0 0.7rem;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  line-height: 1.45;
}

.section-heading h2 span {
  color: var(--coral);
}

.benefits .section-heading h2 span {
  color: var(--coral-dark);
}

.benefits .section-heading > small {
  border-color: rgba(23, 39, 71, 0.3);
}

.section-heading > small {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.section-heading--left {
  text-align: left;
}

.benefit-list {
  border-top: 1px solid rgba(23, 39, 71, 0.18);
}

.benefit-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(23, 39, 71, 0.18);
}

.benefit-number {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-style: italic;
}

.benefit-item p {
  margin: 0 0 0.35rem;
  color: #b84a70;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.benefit-item h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.55;
}

.benefit-item h3 span {
  display: block;
}

.benefit-item small {
  display: block;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.9;
}

.fine-print {
  margin: 1rem 0 1.8rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.benefits .primary-button {
  margin: 0 auto;
  color: #fff;
  background: var(--coral);
  box-shadow: none;
}

.benefits .primary-button:hover {
  background: var(--coral-dark);
}

.collection {
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(23, 39, 71, 0.05) 32px);
}

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

.collection-card {
  min-width: 0;
}

.collection-photo {
  position: relative;
  height: clamp(330px, 52vw, 485px);
  overflow: hidden;
  background: var(--mint);
}

.collection-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.collection-card:hover img {
  transform: scale(1.03);
}

.collection-photo span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.collection-card > p {
  margin: 0.9rem 0 0.2rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.collection-card > small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.65;
}

.swipe-note {
  display: none;
}

.customer-styles {
  background: #fff9f3;
}

.customer-styles .section-heading > small {
  color: var(--ink-soft);
  border-color: rgba(23, 39, 71, 0.24);
}

.customer-style-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.9rem;
}

.customer-style-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
}

.customer-style-grid figure:first-child {
  grid-row: 1 / 3;
}

.customer-style-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 500ms ease;
}

.customer-style-grid figure:first-child img {
  object-position: center 35%;
}

.customer-style-grid figure:hover img {
  transform: scale(1.025);
}

.customer-style-grid figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.36rem 0.65rem;
  color: #fff;
  background: rgba(23, 39, 71, 0.82);
  font-family: Georgia, serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.summer-reasons {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  background: var(--mint-light);
}

.reason-visual {
  position: relative;
  height: 680px;
}

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

.reason-visual p {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  margin: 0;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-style: italic;
  line-height: 0.85;
  text-align: right;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

.reason-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.reason-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.reason-list article > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.reason-list h3 {
  margin: 0 0 0.38rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.reason-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.8;
}

.plans {
  background: #fffaf3;
}

.plan-list {
  border-top: 1px solid var(--line);
}

.plan-list > article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.1rem) 0;
  border-bottom: 1px solid var(--line);
}

.plan-label {
  display: flex;
  flex-direction: column;
}

.plan-label span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 2.7rem;
  font-style: italic;
  line-height: 1;
}

.plan-label small {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.plan-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 500;
}

.plan-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 2;
}

.plan-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.plan-copy li {
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.64rem;
}

.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: var(--ink);
  background: #fff0df;
}

.support-photo {
  min-height: 660px;
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82);
}

.support-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.4rem, 7vw, 5.4rem);
}

.support-kicker {
  color: var(--coral-dark);
}

.support h2 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.55;
}

.support-copy > p:not(.support-kicker) {
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 2.05;
}

.support dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.support dl > div {
  padding: 1.2rem 0.45rem 0;
  border-right: 1px solid var(--line);
  text-align: center;
}

.support dl > div:last-child {
  border-right: 0;
}

.support dt {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.7vw, 1.7rem);
}

.support dt small {
  margin-left: 0.15rem;
  font-family: var(--sans);
  font-size: 0.48em;
}

.support dd {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.55rem;
}

.flow {
  background:
    linear-gradient(rgba(255, 242, 244, 0.96), rgba(255, 242, 244, 0.96)),
    radial-gradient(circle, var(--deep) 1px, transparent 1px);
  background-size: auto, 20px 20px;
}

.flow ol {
  display: grid;
  max-width: 720px;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.flow li {
  display: grid;
  min-height: 160px;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow li:nth-child(2n) {
  border-right: 0;
}

.flow li:nth-child(n + 3) {
  border-bottom: 0;
}

.flow li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-family: Georgia, serif;
}

.flow h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.flow li p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.8;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 38px 1fr 26px;
  gap: 0.8rem;
  align-items: center;
  padding: 1.45rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

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

.faq summary > span,
.faq-answer > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.faq summary i {
  font-style: normal;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  padding: 0 0 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 2;
}

.reservation {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(34, 52, 95, 0.97), rgba(23, 39, 71, 0.96)),
    url("./frink-style-pink.jpg") center 24% / cover;
}

.reservation-intro {
  margin-bottom: 2.5rem;
  text-align: center;
}

.reservation-intro > p:first-child {
  color: #ffc49c;
}

.reservation-intro h2 {
  font-size: clamp(1.65rem, 4.2vw, 2.55rem);
  line-height: 1.55;
}

.reservation-intro > p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.reservation-form,
.form-success {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.reservation-form label > span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 39, 71, 0.22);
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  background: #fff;
  font-size: 0.78rem;
}

.reservation-form textarea {
  min-height: 112px;
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 2px solid rgba(242, 138, 57, 0.45);
  outline-offset: 1px;
}

.reservation-form input[aria-invalid="true"],
.reservation-form select[aria-invalid="true"],
.reservation-form textarea[aria-invalid="true"] {
  border-color: #bb2d3b;
  background: #fff8f8;
}

.reservation-form label > span i {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.36rem;
  color: #fff;
  background: var(--coral-dark);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 700;
  vertical-align: 0.08rem;
}

.reservation-form label > span i.is-optional {
  color: var(--ink-soft);
  background: var(--mint);
}

.form-step {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.form-step:first-of-type {
  margin-top: 0;
}

.form-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-family: Georgia, serif;
  font-style: italic;
}

.form-step strong,
.form-step small {
  display: block;
}

.form-step strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.form-step small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.6rem;
}

.field-error {
  display: none;
  margin-top: 0.35rem;
  color: #a51d2d;
  font-size: 0.62rem;
  line-height: 1.5;
}

.field-error:not(:empty) {
  display: block;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0.8rem 1.3rem 0.8rem 1.5rem;
  color: #fff;
  background: var(--coral);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.form-submit:hover {
  background: var(--coral-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: -0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.61rem;
  text-align: center;
}

.form-success {
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-size: 1.5rem;
}

.form-success h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.form-success p {
  margin: 0.8rem 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.form-success a {
  display: inline-block;
  border: 1px solid var(--deep);
  padding: 0.65rem 1.4rem;
  color: var(--deep);
  background: transparent;
  font-size: 0.72rem;
}

.form-error-summary {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(165, 29, 45, 0.35);
  color: #8f1726;
  background: #fff3f4;
  font-size: 0.68rem;
  line-height: 1.7;
}

.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.85rem;
  background: var(--mint-light);
}

.reservation-form .form-consent input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 0.1rem 0 0;
  accent-color: var(--coral-dark);
}

.reservation-form .form-consent > span {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.65;
}

.form-consent a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.shop {
  background: var(--mint-light);
}

.shop-heading {
  text-align: center;
}

.shop-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
}

.shop-grid {
  display: grid;
  max-width: 730px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin: 2.3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.shop dl {
  margin: 0;
}

.shop dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  padding: 0.55rem 0;
}

.shop dt {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.shop dd {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.shop-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  color: #fff;
  background: var(--deep);
  text-align: center;
}

.shop-call small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.shop-call strong {
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.shop-call span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.55rem;
}

footer {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 7rem;
  color: #fff;
  background: #172747;
  text-align: center;
}

.brand--footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.82);
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.6);
}

footer > p {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

footer .credits {
  margin-top: 1.7rem;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
}

.credits a {
  margin-left: 0.24rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer > small {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 0;
  display: grid;
  width: min(100%, 960px);
  min-height: 64px;
  grid-template-columns: 0.8fr 1.2fr;
  transform: translateX(-50%);
  color: #fff;
  box-shadow: 0 -8px 30px rgba(23, 39, 71, 0.18);
}

.sticky-cta a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}

.sticky-cta span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sticky-cta small {
  opacity: 0.7;
  font-size: 0.52rem;
}

.sticky-cta-secondary {
  background: var(--deep);
}

.sticky-cta-secondary small {
  opacity: 0.9;
  font-family: Georgia, serif;
  font-size: 0.6rem;
  letter-spacing: 0.03em;
}

.sticky-cta-primary {
  background: var(--coral);
}

.sticky-cta-primary i {
  position: absolute;
  right: 1.2rem;
  font-style: normal;
  font-size: 1.2rem;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .header-link {
    font-size: 0.67rem;
  }

  .hero {
    min-height: 850px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    z-index: 4;
    min-height: 850px;
    justify-content: flex-end;
    padding: 3.2rem 1.45rem 3.4rem;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(23, 39, 71, 0.03) 15%, rgba(23, 39, 71, 0.8) 74%, rgba(17, 30, 58, 0.97));
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 850px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(249, 220, 232, 0.04), rgba(217, 79, 126, 0.1));
  }

  .hero-slide-controls {
    top: 8.55rem;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-en {
    color: #ffd4ca;
  }

  .event-badge {
    color: #fff;
    border-color: rgba(255, 212, 202, 0.8);
    background: rgba(23, 39, 71, 0.45);
  }

  .hero-lead,
  .hero-note {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  }

  .hero-title-accent {
    color: #ffd4ca;
  }

  .hero-date {
    margin-top: 1.5rem;
  }

  .hero-ribbon {
    top: 1.2rem;
    right: 1.1rem;
    bottom: auto;
    width: 114px;
    height: 114px;
  }

  .hero-ribbon strong {
    font-size: 1.75rem;
  }

  .vertical-message {
    top: 1.2rem;
    right: auto;
    left: 1.1rem;
    background: rgba(23, 39, 71, 0.88);
  }

  .quick-nav {
    grid-template-columns: 1fr 1fr;
  }

  .quick-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .quick-nav a:nth-child(2n) {
    border-right: 0;
  }

  .desktop-break {
    display: none;
  }

  .target-years {
    flex-wrap: wrap;
  }

  .target-years span {
    min-width: 33.333%;
  }

  .target-years span:nth-child(3) {
    border-right: 0;
  }

  .target-years small {
    width: 100%;
    min-height: 34px;
  }

  .contract-benefit-grid {
    grid-template-columns: 1fr;
  }

  .contract-benefit-grid article {
    display: block;
    min-height: 0;
  }

  .contract-benefit-image,
  .contract-benefit-grid article:nth-child(2n) .contract-benefit-image {
    min-height: 0;
    aspect-ratio: 900 / 560;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 39, 71, 0.1);
    border-left: 0;
  }

  .contract-benefit-copy {
    padding: 1.5rem;
  }

  .benefit-item {
    grid-template-columns: 58px 1fr;
    gap: 0.8rem;
  }

  .benefit-number {
    font-size: 1.55rem;
  }

  .collection-grid {
    width: calc(100% + 1.4rem);
    grid-auto-columns: 76%;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    scroll-snap-align: start;
  }

  .collection-photo {
    height: 430px;
  }

  .swipe-note {
    display: block;
    margin: 1.5rem 0 0;
    color: var(--ink-soft);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .customer-style-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 260px;
  }

  .customer-style-grid figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .summer-reasons {
    grid-template-columns: 1fr;
  }

  .reason-visual {
    height: 500px;
  }

  .reason-visual p {
    right: 0.7rem;
  }

  .plan-list > article {
    grid-template-columns: 62px 1fr;
    gap: 0.8rem;
  }

  .plan-label span {
    font-size: 2rem;
  }

  .plan-label small {
    font-size: 0.45rem;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
  }

  .support {
    grid-template-columns: 1fr;
  }

  .support-photo {
    min-height: 510px;
  }

  .support-copy {
    padding: 3.5rem 1.4rem 4rem;
  }

  .support dl {
    margin-top: 2rem;
  }

  .flow ol {
    grid-template-columns: 1fr;
  }

  .flow li,
  .flow li:nth-child(2n),
  .flow li:nth-child(n + 3) {
    min-height: 128px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow li:last-child {
    border-bottom: 0;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .announcement {
    justify-content: space-between;
    gap: 0.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .site-header {
    padding-inline: 0.9rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.45rem;
  }

  .header-link span {
    display: none;
  }

  .section-pad {
    padding-inline: 1.25rem;
  }

  .intro h2,
  .section-heading h2,
  .support h2,
  .reservation-intro h2 {
    letter-spacing: 0.025em;
  }

  .faq summary {
    grid-template-columns: 28px 1fr 22px;
    font-size: 0.81rem;
  }

  .faq-answer {
    grid-template-columns: 28px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

