: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: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "MS PMincho", "Noto Serif JP", serif;
  --serif-display: "YuMincho +36p Kana", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "MS PMincho", "Noto Serif JP", serif;
  --serif-headline: "dnp-shuei-shogomincho-std", "YuMincho +36p Kana", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "MS PMincho", "Noto Serif JP", serif;
  --serif-editorial: Didot, "Bodoni 72", "Bodoni MT", Baskerville, Georgia, "Times New Roman", serif;
  --sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", YuGothic, Meiryo, "Noto Sans JP", sans-serif;
  --sans-modern: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, "Noto Sans JP", sans-serif;
  --sans-round: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --script: "Snell Roundhand", "Apple Chancery", "Segoe Script", cursive;
  --number: "Avenir Next Condensed", "Avenir Next", Avenir, "Helvetica Neue", Arial, 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);
  font-kerning: normal;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  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-family: var(--sans-modern);
  font-size: 0.7rem;
  font-weight: 600;
  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-display);
  font-size: 1.45rem;
  font-weight: 700;
}

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

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

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

.header-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans-modern);
  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: var(--serif-editorial);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 600;
  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-family: var(--sans-round);
  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-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

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

.hero h1 {
  margin: 0;
  font-family: var(--serif-headline);
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  font-feature-settings: "palt" 1;
  font-weight: 700;
  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-family: var(--sans-modern);
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-date {
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  margin: 2.2rem 0 0;
  font-family: var(--number);
  font-variant-numeric: lining-nums tabular-nums;
}

.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-round);
  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-family: var(--sans-modern);
  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-family: var(--sans-modern);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-phone strong {
  font-family: var(--number);
  font-size: 1.42rem;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.03em;
}

.hero-phone em {
  color: var(--ink-soft);
  font-family: var(--sans-modern);
  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-family: var(--sans-modern);
  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-offer {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-family: var(--sans-modern);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.hero-offer strong {
  color: var(--deep);
  font-family: var(--serif-display);
  font-size: 0.82rem;
}

.hero-offer span {
  color: var(--coral-dark);
  font-weight: 700;
}

.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-family: var(--sans-round);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.hero-ribbon strong {
  font-family: var(--number);
  font-size: 2.1rem;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
}

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

.hero-slide-toggle {
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  left: 1.35rem;
  min-width: 48px;
  min-height: 34px;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 39, 71, 0.62);
  backdrop-filter: blur(8px);
  font-family: var(--sans-modern);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.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-display);
  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(--sans-round);
  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: var(--number);
  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: var(--script);
  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-headline);
  font-feature-settings: "palt" 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-wrap: balance;
}

.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-family: var(--serif);
  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: var(--number);
  font-variant-numeric: lining-nums tabular-nums;
  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-family: var(--sans-round);
  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: var(--serif-editorial);
  font-size: 0.7rem;
  font-style: italic;
  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-family: var(--sans-round);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contract-benefit-heading h2 {
  margin: 0;
  font-family: var(--serif-headline);
  font-size: clamp(1.8rem, 4.8vw, 3rem);
  font-feature-settings: "palt" 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-wrap: balance;
}

.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-family: var(--serif);
  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: var(--serif-editorial);
  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: var(--serif-editorial);
  font-size: 0.62rem;
  font-style: italic;
  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-headline);
  font-feature-settings: "palt" 1;
  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: var(--serif-editorial);
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 600;
  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-family: var(--sans-round);
  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: var(--number);
  font-size: 2.2rem;
  font-style: italic;
}

.benefit-item p {
  margin: 0 0 0.35rem;
  color: #b84a70;
  font-family: var(--sans-modern);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.benefit-item h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif-headline);
  font-feature-settings: "palt" 1;
  font-size: clamp(1.25rem, 3.4vw, 1.8rem);
  font-weight: 700;
  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: var(--number);
  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(--sans-modern);
  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;
}

.catalog-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(217, 79, 126, 0.2);
  border-bottom: 1px solid rgba(217, 79, 126, 0.2);
  background:
    radial-gradient(circle at 14% 25%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 72%, rgba(242, 138, 57, 0.14) 0 3px, transparent 4px),
    linear-gradient(115deg, #fff2f4, #fff9f3 58%, #f9dce8);
  background-size: 46px 46px, 58px 58px, auto;
}

.catalog-cta::before {
  position: absolute;
  right: -0.08em;
  bottom: -0.26em;
  content: "CATALOG";
  color: rgba(217, 79, 126, 0.08);
  font-family: var(--serif-editorial);
  font-size: clamp(7rem, 24vw, 14rem);
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.catalog-cta .section-heading,
.catalog-cta .primary-button {
  position: relative;
  z-index: 1;
}

.catalog-cta .section-heading {
  margin-bottom: 0;
}

.catalog-cta .section-heading > small {
  max-width: 650px;
  border-color: rgba(23, 39, 71, 0.18);
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.catalog-cta .primary-button {
  margin: 1.8rem auto 0;
}

.frink-film {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 5.7rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 10% 12%, rgba(249, 220, 232, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 76%, rgba(242, 138, 57, 0.18) 0 3px, transparent 4px),
    linear-gradient(145deg, #15233f 0%, var(--deep) 58%, #55304e 100%);
  background-size: 48px 48px, 64px 64px, auto;
}

.frink-film::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -170px;
  width: 510px;
  height: 510px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.025),
    0 0 0 92px rgba(249, 220, 232, 0.035);
}

.frink-film::after {
  position: absolute;
  z-index: -1;
  left: -0.08em;
  bottom: -0.27em;
  content: "FRINK";
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif-editorial);
  font-size: clamp(8rem, 25vw, 15rem);
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.frink-film-copy,
.frink-film-frame {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.frink-film-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: #ffd6e5;
  font-family: var(--serif-editorial);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.frink-film-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.frink-film h2 {
  margin: 0;
  font-family: var(--serif-headline);
  font-feature-settings: "palt" 1;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.48;
  text-wrap: balance;
}

.frink-film h2 span {
  color: #ffd2df;
  font-size: 1.08em;
}

.frink-film-copy > p:not(.frink-film-kicker) {
  max-width: 530px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.frink-film-meta {
  display: grid;
  max-width: 530px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.7rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.frink-film-meta span {
  display: block;
  padding: 0 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--sans-modern);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.frink-film-meta span:first-child {
  padding-left: 0;
}

.frink-film-meta span:last-child {
  padding-right: 0;
  border-right: 0;
}

.frink-film-meta strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #fff;
  font-family: var(--number);
  font-size: 0.86rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.08em;
}

.frink-film .primary-button {
  color: var(--ink);
  background: #ffd2df;
  box-shadow: 0 16px 34px rgba(7, 15, 32, 0.32);
}

.frink-film .primary-button:hover {
  background: #fff;
}

.frink-film-frame {
  width: min(100%, 390px);
  margin: 0 0 0 auto;
  padding: 0.75rem 0.75rem 0.9rem;
  color: var(--ink);
  background: #fffaf5;
  box-shadow: 0 34px 70px rgba(7, 15, 32, 0.45);
  transform: rotate(1.35deg);
  transition: transform 250ms ease;
}

.frink-film-frame:hover {
  transform: rotate(0deg) translateY(-3px);
}

.frink-film-frame::before {
  position: absolute;
  z-index: 2;
  top: -0.7rem;
  left: -1.15rem;
  padding: 0.42rem 0.78rem;
  content: "NEW / SEPTEMBER";
  color: #fff;
  background: var(--coral-dark);
  box-shadow: 0 8px 18px rgba(7, 15, 32, 0.24);
  font-family: var(--sans-modern);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: rotate(-5deg);
}

.frink-film-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(23, 39, 71, 0.14);
  background: #0c1427;
  object-fit: cover;
}

.frink-film-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.18rem 0;
}

.frink-film-frame figcaption strong {
  font-family: var(--serif-editorial);
  font-size: 0.76rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.frink-film-frame figcaption small {
  color: var(--ink-soft);
  font-family: var(--sans-modern);
  font-size: 0.46rem;
  letter-spacing: 0.1em;
  text-align: right;
}

.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: var(--serif-editorial);
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.15em;
}

.friends-photo-story {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  margin-top: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(249, 220, 232, 0.14) 0 2px, transparent 3px),
    linear-gradient(145deg, var(--deep), #492f52);
  background-size: 44px 44px, auto;
  box-shadow: 0 22px 46px rgba(23, 39, 71, 0.18);
}

.friends-photo-story-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #bce9e9;
}

.friends-photo-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.friends-photo-story:hover .friends-photo-story-visual img {
  transform: scale(1.025);
}

.friends-photo-story-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--serif-editorial);
  font-size: 0.52rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.friends-photo-story-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.friends-photo-story-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: #ffd2df;
  font-family: var(--serif-editorial);
  font-size: 0.62rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.friends-photo-story-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.friends-photo-story h3 {
  margin: 0;
  font-family: var(--serif-headline);
  font-feature-settings: "palt" 1;
  font-size: clamp(1.8rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.5;
}

.friends-photo-story h3 span {
  color: #ffd2df;
}

.friends-photo-story-copy > p:not(.friends-photo-story-kicker) {
  margin: 1.25rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 0.77rem;
  letter-spacing: 0.035em;
  line-height: 1.95;
}

.friends-photo-story .primary-button {
  color: var(--ink);
  background: #ffd2df;
  box-shadow: 0 14px 30px rgba(7, 15, 32, 0.3);
}

.friends-photo-story .primary-button:hover {
  background: #fff;
}

.friends-photo-story-copy > small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
}

.friends-photo-story-copy > small a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.customer-style-note {
  width: min(100%, 670px);
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-family: var(--serif-display);
  font-feature-settings: "palt" 1;
  font-size: clamp(0.86rem, 2vw, 1.05rem);
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
}

.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: var(--serif-editorial);
  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: var(--number);
  font-size: 0.85rem;
}

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

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

.plans {
  background: #fffaf3;
}

.plans .section-heading > small {
  max-width: 650px;
  border-color: var(--line);
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.price-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 1.7rem 1rem 1.4rem;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 39, 71, 0.05);
}

.price-plan-card--recommended {
  border: 2px solid var(--coral-dark);
  background: linear-gradient(180deg, #fff4f7, #fff);
  box-shadow: 0 16px 34px rgba(217, 79, 126, 0.14);
  transform: translateY(-0.45rem);
}

.price-plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  background: var(--coral-dark);
  font-family: var(--sans-round);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.price-plan-label {
  margin: 0 0 0.8rem;
  color: var(--coral-dark);
  font-family: var(--serif-editorial);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.18em;
}

.price-plan-card h3 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin: 0;
  color: var(--deep);
  font-family: var(--number);
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
}

.price-plan-card h3 strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.price-plan-card h3 small {
  font-family: var(--serif-display);
  font-size: 0.72rem;
}

.price-plan-card > p:last-child {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-family: var(--sans-round);
  font-size: 0.67rem;
  line-height: 1.7;
}

.plan-benefit-callout {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding: 1.5rem clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(217, 79, 126, 0.28);
  background: linear-gradient(110deg, #f9dce8, #fff0df);
}

.plan-benefit-callout > span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--deep);
  font-family: var(--sans-round);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan-benefit-callout p,
.plan-benefit-callout h3,
.plan-benefit-callout small {
  margin: 0;
}

.plan-benefit-callout p {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.plan-benefit-callout h3 {
  margin: 0.18rem 0 0.2rem;
  color: var(--coral-dark);
  font-family: var(--serif-headline);
  font-feature-settings: "palt" 1;
  font-size: clamp(1.1rem, 2.7vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.plan-benefit-callout small,
.price-plan-note {
  color: var(--ink-soft);
  font-size: 0.61rem;
  line-height: 1.7;
}

.price-plan-note {
  margin: 1rem 0 0;
  text-align: center;
}

.plans .primary-button {
  margin: 1.7rem auto 0;
}

.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%;
}

.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: var(--number);
  font-size: clamp(1.1rem, 2.7vw, 1.7rem);
  font-variant-numeric: lining-nums tabular-nums;
}

.support dt small {
  margin-left: 0.15rem;
  font-family: var(--sans-round);
  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: var(--number);
}

.flow h3 {
  margin: 0 0 0.35rem;
  font-family: var(--sans-round);
  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(--sans-round);
  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: var(--serif-editorial);
  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-family: var(--sans-modern);
  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: var(--number);
  font-style: italic;
}

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

.form-step strong {
  font-family: var(--serif-display);
  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-family: var(--sans-modern);
  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-display);
  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-headline);
  font-feature-settings: "palt" 1;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
}

.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-family: var(--sans-modern);
  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(--number);
  font-size: 1.15rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.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-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

footer .credits {
  margin-top: 1.7rem;
  font-family: var(--serif-editorial);
  font-style: italic;
  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-family: var(--sans-modern);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

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

.sticky-cta-secondary small {
  opacity: 0.9;
  font-family: var(--number);
  font-size: 0.6rem;
  font-variant-numeric: lining-nums tabular-nums;
  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-toggle {
    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-offer {
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-offer strong {
    color: #fff;
  }

  .hero-offer span {
    color: #ffd4ca;
  }

  .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;
  }

  .frink-film {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3.8rem;
    text-align: center;
  }

  .frink-film-kicker {
    justify-content: center;
  }

  .frink-film-copy > p:not(.frink-film-kicker),
  .frink-film-meta {
    margin-right: auto;
    margin-left: auto;
  }

  .frink-film .primary-button {
    margin: 0 auto;
  }

  .frink-film-frame {
    width: min(100%, 350px);
    margin: 0 auto;
    transform: none;
  }

  .frink-film-frame:hover {
    transform: translateY(-3px);
  }

  .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;
  }

  .friends-photo-story {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .friends-photo-story-visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .friends-photo-story-copy {
    align-items: center;
    padding: 3rem clamp(1.5rem, 8vw, 3.5rem);
    text-align: center;
  }

  .friends-photo-story-kicker {
    justify-content: center;
  }

  .friends-photo-story-copy > p:not(.friends-photo-story-kicker) {
    max-width: 570px;
  }

  .friends-photo-story-copy > small {
    text-align: center;
  }

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

  .reason-visual {
    height: 500px;
  }

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

  .price-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .price-plan-card {
    min-height: 195px;
    padding: 1.55rem 0.75rem 1.2rem;
  }

  .price-plan-card--recommended {
    transform: none;
  }

  .plan-benefit-callout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    text-align: center;
  }

  .plan-benefit-callout > span {
    width: min(100%, 190px);
    margin: 0 auto;
  }

  .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.68rem;
    letter-spacing: 0.04em;
  }

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

  .brand {
    gap: 0.5rem;
  }

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

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

  .header-link span {
    display: none;
  }

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

  .price-plan-grid {
    gap: 0.55rem;
  }

  .price-plan-card {
    min-height: 185px;
    padding-inline: 0.55rem;
  }

  .price-plan-card h3 strong {
    font-size: 1.42rem;
  }

  .price-plan-card > p:last-child {
    font-size: 0.7rem;
  }

  .frink-film {
    padding-inline: 1.1rem;
  }

  .frink-film h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    letter-spacing: 0.035em;
  }

  .frink-film-meta span {
    padding-inline: 0.38rem;
    font-size: 0.46rem;
  }

  .frink-film-meta strong {
    font-size: 0.72rem;
  }

  .frink-film-frame::before {
    left: -0.25rem;
  }

  .friends-photo-story-visual {
    min-height: 0;
  }

  .friends-photo-story-copy {
    padding: 2.6rem 1.25rem;
  }

  .friends-photo-story h3 {
    font-size: clamp(1.7rem, 9vw, 2.15rem);
    letter-spacing: 0.045em;
  }

  .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;
  }
}
