:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --text: #1f1f1c;
  --muted: #66635e;
  --line: #e4e0db;
  --accent: #b8a48a;
  --max-width: 1160px;
  --space-section: clamp(4rem, 8vw, 8rem);
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-label: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Fixed home header: anchors scroll to content below the bar */
html:has(body.page-home) {
  scroll-padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
}

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

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

.container {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgb(247 245 242 / 75%);
  border-bottom: 1px solid var(--line);
  z-index: 30;
}

.header-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.lang-switcher {
  flex-shrink: 0;
}

.lang-select {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  height: 2.25rem;
  padding: 0 1.85rem 0 0.75rem;
  margin: 0;
  border: 1px solid rgb(35 34 32 / 0.2);
  border-radius: 999px;
  background-color: rgb(255 255 255 / 0.32);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.5 1.5L6 6l4.5-4.5' stroke='%23232120' stroke-opacity='0.55' stroke-width='1.35' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 0.65rem auto;
  color: var(--text);
  cursor: pointer;
  max-width: 9.75rem;
  vertical-align: middle;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.lang-select:hover {
  border-color: rgb(35 34 32 / 0.3);
  background-color: rgb(255 255 255 / 0.48);
}

.lang-select:focus {
  outline: none;
}

.lang-select:focus-visible {
  outline: 2px solid rgb(35 34 32 / 0.28);
  outline-offset: 2px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 1rem;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
}

/* Home: fixed top bar — gradient frosted glass (shorter fade; no bottom border) */
.page-home .site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.48) 52%,
    rgb(255 255 255 / 0.16) 88%,
    rgb(255 255 255 / 0) 100%
  );
  border-bottom: none;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.05);
}

.page-home .site-header--overlay .brand,
.page-home .site-header--overlay .nav a {
  color: var(--text);
  text-shadow: none;
}

.page-home .site-header--overlay .brand {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.page-home .site-header--overlay .nav a:hover,
.page-home .site-header--overlay .nav a[aria-current="page"] {
  opacity: 1;
}

.page-home .site-header--overlay .lang-select {
  background-color: rgb(255 255 255 / 0.38);
  border-color: rgb(35 34 32 / 0.2);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-home .site-header--overlay .lang-select:hover {
  background-color: rgb(255 255 255 / 0.52);
  border-color: rgb(35 34 32 / 0.28);
}

.page-home .site-header--overlay .lang-select option {
  background: var(--surface);
  color: var(--text);
}

/* Home: minimal header (reference: full-bleed hero, quiet nav) */
.site-header--hero-lux .header-inner--lux {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 4.25rem;
}

.site-header__lux-line {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: none;
  max-width: 56vw;
  line-height: 1.35;
}

.page-home .site-header--overlay .site-header__lux-line {
  color: rgb(102 99 94 / 0.92);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav--lux {
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav--lux a {
  opacity: 0.72;
}

.nav--lux a:hover,
.nav--lux a[aria-current="page"] {
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header__lux-line {
    display: none;
  }

  .site-header--hero-lux .header-inner--lux {
    grid-template-columns: 1fr auto;
  }

  .header-tools {
    grid-column: 2;
  }

  .brand {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .nav--lux {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: min(58vw, 14rem);
    -webkit-overflow-scrolling: touch;
    font-size: 0.62rem;
    gap: 0.5rem;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .nav--lux::-webkit-scrollbar {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header--bar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgb(247 245 242 / 75%);
  border-bottom: 1px solid var(--line);
}

.header-inner--bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 4rem;
  flex-wrap: nowrap;
}

.header-tools--bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 0.2s,
    opacity 0.2s;
}

.page-home .site-header--overlay .header-icon-circle {
  border-color: rgb(35 34 32 / 0.22);
  color: var(--text);
}

.page-home .site-header--overlay .header-menu-btn {
  border-color: rgb(35 34 32 / 0.22);
  color: var(--text);
}

.site-header--bar .header-icon-circle {
  border-color: rgb(35 34 32 / 0.22);
  color: var(--text);
}

.header-icon-circle__svg {
  width: 1rem;
  height: 1rem;
}

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    opacity 0.2s;
}

.site-header--bar .header-menu-btn--dark {
  border-color: rgb(35 34 32 / 0.22);
  color: var(--text);
}

.header-menu-btn__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  width: 1rem;
}

.header-menu-btn__hamburger span {
  display: block;
  height: 1px;
  background: currentColor;
}

.header-menu-btn--close {
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: 50%;
  color: #fff;
}

.header-menu-btn__close {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.header-menu-btn__close::before,
.header-menu-btn__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.header-menu-btn__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-menu-btn__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #0a0a0a;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-overlay[hidden] {
  display: none;
}

.nav-overlay__panel {
  position: relative;
  min-height: 100%;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 8vh, 4rem);
  display: flex;
  flex-direction: column;
}

.nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 4vh, 2rem);
  flex-shrink: 0;
}

.nav-overlay__brand {
  color: #fff !important;
  text-decoration: none;
  text-shadow: none;
  font-size: 1.05rem;
}

.nav-overlay__tools {
  gap: 0.45rem 0.65rem;
}

.nav-overlay__tools .header-icon-circle--on-dark {
  border-color: rgb(255 255 255 / 0.5);
  color: #fff;
}

.nav-overlay__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 12vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.nav-overlay__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  max-width: 44rem;
  margin: 0 auto;
  flex: 1;
  align-content: center;
}

.nav-overlay__link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  transition: opacity 0.2s;
}

.nav-overlay__link:hover {
  opacity: 0.85;
}

.nav-overlay__link[aria-current="page"] {
  border-bottom-color: rgb(255 255 255 / 0.35);
}

.nav-overlay__title {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.96);
}

.nav-overlay__title--costume {
  letter-spacing: 0.32em;
}

.nav-overlay__sub {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgb(255 255 255 / 0.42);
}

/* Full-width hairline between primary links and AI / Reserve (same grid) */
.nav-overlay__grid-rule {
  grid-column: 1 / -1;
  display: block;
  height: 0;
  margin: 0.65rem 0 0.15rem;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

/* Secondary row: same typography as nav links, slightly brighter accent */
.nav-overlay__link--accent {
  padding-top: 0.65rem;
}

.nav-overlay__link--accent .nav-overlay__title {
  letter-spacing: 0.3em;
  color: rgb(255 255 255 / 0.99);
}

.nav-overlay__link--accent .nav-overlay__sub {
  color: rgb(255 255 255 / 0.48);
}

.nav-overlay__link--accent:hover {
  opacity: 0.92;
}

@media (max-width: 640px) {
  .nav-overlay__grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #8e9aa4 0%, #c6c0b5 52%, #f1ece3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(23 23 22 / 42%), rgb(23 23 22 / 8%));
  z-index: 2;
}

.hero.hero--video {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  border-bottom: none;
  background: #1a1a18;
}

section.hero.hero--video {
  padding: 0;
}

.hero.hero--video::before {
  background: linear-gradient(
    180deg,
    rgb(12 12 11 / 55%) 0%,
    rgb(12 12 11 / 35%) 45%,
    rgb(12 12 11 / 55%) 100%
  );
  z-index: 3;
}

.hero.hero--cinematic::before {
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 42%,
      rgb(0 0 0 / 0) 0%,
      rgb(0 0 0 / 0.55) 75%,
      rgb(0 0 0 / 0.85) 100%
    ),
    linear-gradient(
      180deg,
      rgb(6 6 6 / 0.78) 0%,
      rgb(6 6 6 / 0.42) 48%,
      rgb(6 6 6 / 0.8) 100%
    );
}

.hero-bridal-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 130% 85% at 50% 108%,
      rgb(255 246 238 / 0.14) 0%,
      transparent 52%
    ),
    radial-gradient(
      ellipse 55% 45% at 12% 88%,
      rgb(255 252 248 / 0.09) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 55% 45% at 88% 88%,
      rgb(255 252 248 / 0.09) 0%,
      transparent 50%
    );
  mix-blend-mode: soft-light;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero--cinematic .hero-content {
  z-index: 5;
}

/* Home hero: minimal full-bleed (luxury studio style) */
.hero.hero--cinematic.hero--lux::before {
  background:
    radial-gradient(
      ellipse 110% 82% at 50% 42%,
      rgb(0 0 0 / 0) 0%,
      rgb(0 0 0 / 0.12) 55%,
      rgb(0 0 0 / 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgb(6 6 6 / 0.14) 0%,
      rgb(6 6 6 / 0.02) 46%,
      rgb(6 6 6 / 0.22) 100%
    );
}

.hero-bridal-glow--lux {
  opacity: 0.32;
}

.hero-noise--lux {
  opacity: 0.06;
}

.hero.hero--lux {
  padding: 0;
}

/* Home: headline sits below full-bleed video (not overlaid) */
.hero-after--lux {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #121211 0%, #1a1918 14%, var(--bg) 34%);
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.35rem, 5.5vw, 3.75rem);
}

.hero-after__inner {
  max-width: min(44rem, 92vw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 0.35rem;
}

.hero-after__inner::before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 auto 1.35rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgb(184 164 138 / 0.45) 42%,
    rgb(184 164 138 / 0.12) 100%
  );
  opacity: 0.9;
}

.hero-after__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgb(38 36 34 / 0.97);
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
}

@keyframes mv-hero-after-title {
  0% {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    filter: blur(12px);
    letter-spacing: 0.04em;
  }
  55% {
    filter: blur(2px);
    letter-spacing: -0.01em;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    letter-spacing: -0.02em;
  }
}

.hero-after__title--enter {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-after__title--enter {
    opacity: 0;
    animation: mv-hero-after-title 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
  }
}

/* Fixed AI CHAT / RESERVE (desktop: overlapping circles; mobile: full-width bar) */
.hero-float-cta {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  pointer-events: none;
}

.hero-float-cta > .hero-circle {
  pointer-events: auto;
}

.hero-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(34vw, 7rem);
  height: min(34vw, 7rem);
  max-width: 7rem;
  max-height: 7rem;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 0.45rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 18px 44px rgb(0 0 0 / 28%);
}

.hero-circle + .hero-circle {
  margin-left: -0.85rem;
}

.hero-circle__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  max-width: 100%;
}

.hero-circle__line {
  display: block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero-circle__sub {
  display: block;
  font-family: var(--font-label);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: none;
  opacity: 0.95;
}

.hero-circle:hover {
  transform: translateY(-2px);
}

.hero-circle--sand {
  background: #9d8b7a;
  color: #fff;
  text-shadow: 0 1px 12px rgb(0 0 0 / 22%);
}

.hero-circle--dark {
  background: #3a3836;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.12);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 12;
  padding: 0.5rem;
  color: rgb(255 255 255 / 0.88);
  opacity: 0.9;
  will-change: opacity;
  transition: opacity 0.35s ease;
}

.hero.hero--lux .hero-scroll {
  left: max(1.25rem, env(safe-area-inset-left));
  right: auto;
  transform: none;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  transition: none;
}

[dir="rtl"] .hero.hero--lux .hero-scroll {
  left: auto;
  right: max(1.25rem, env(safe-area-inset-right));
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll__line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0.6),
    rgb(255 255 255 / 0.06)
  );
  border-radius: 1px;
}

[dir="rtl"] .hero-float-cta {
  right: auto;
  left: max(1rem, env(safe-area-inset-left));
}

[dir="rtl"] .hero-circle + .hero-circle {
  margin-left: 0;
  margin-right: -0.85rem;
}

@media (max-width: 720px) {
  body:has(.hero-float-cta) {
    padding-bottom: calc(3.65rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-float-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 -6px 28px rgb(0 0 0 / 12%);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .hero-float-cta > .hero-circle {
    flex: 1 1 50%;
    width: auto;
    height: auto;
    min-height: 3.65rem;
    max-width: none;
    max-height: none;
    border-radius: 0;
    margin: 0 !important;
    box-shadow: none;
    padding: 0.65rem 0.5rem;
    transform: none;
  }

  .hero-float-cta > .hero-circle:hover {
    transform: none;
    filter: brightness(1.04);
  }

  .hero-circle__line {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero-circle__sub {
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .hero.hero--lux .hero-scroll {
    bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-after--lux {
    padding-bottom: calc(2.25rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 520px) {
  .hero-after__title {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transform-origin: 50% 45%;
  will-change: transform;
}

.hero.hero--lux .hero-media {
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  color: #fff;
  width: min(100% - 3rem, 760px);
  margin: 0 auto;
  text-align: left;
  z-index: 3;
}

.hero--video .hero-content {
  text-align: center;
  width: min(100% - 2.5rem, 820px);
  max-width: 920px;
}

.hero--cinematic.hero--video {
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(7.5rem, 14vh, 10rem) 0 clamp(4rem, 10vh, 6rem);
}

.hero--cinematic .eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: clamp(0.85rem, 2vw, 1.1rem);
  color: rgb(255 255 255 / 0.92);
}

.hero-wedding-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.hero-wedding-accent__line {
  display: block;
  width: min(3.5rem, 12vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.55),
    transparent
  );
}

.hero-wedding-accent__mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgb(255 248 240 / 0.88);
  opacity: 0.95;
}

.hero--cinematic h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.35rem, 6.2vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.hero--cinematic .hero-lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  line-height: 1.75;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
}

.hero--cinematic .hero-note {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: rgb(255 255 255 / 0.78);
}

.hero--cinematic .btn--hero {
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  min-width: 158px;
  letter-spacing: 0.02em;
}

.hero--cinematic .hero-actions {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

[dir="rtl"] .hero--cinematic h1 {
  max-width: min(100%, 20rem);
}

.hero--video .hero-content > :first-child {
  margin-top: 0;
}

.hero-lead {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.hero-content .hero-note {
  margin-top: 1.75rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 72%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-content p {
  color: rgb(255 255 255 / 92%);
  max-width: 560px;
}

.hero--video .hero-content .hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  color: rgb(255 255 255 / 88%);
}

.actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.78rem 1.3rem;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  min-width: 140px;
  transition: 0.24s ease;
}

.btn-primary {
  background: #fff;
  color: #111;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost {
  border-color: rgb(255 255 255 / 90%);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: #111;
}

section {
  padding: var(--space-section) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

/* Home: scroll reveal — varied motion / rhythm (not one-size-fits-all) */
.reveal:not(.reveal--chain) {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* Default single-block reveal (fallback if no motion modifier) */
.reveal:not(.reveal--chain):not(.reveal--soft-rise):not(.reveal--stage-depth):not(
    .reveal--title-shift
  ) {
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal:not(.reveal--chain).is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

/* Campaign eyebrow: soft lift + deblur */
.reveal.reveal--soft-rise:not(.reveal--chain) {
  transform: translate3d(0, 14px, 0);
  filter: blur(5px);
  transition:
    opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.78s ease-out;
}

/* Carousels: deeper plane, slower settle */
.reveal.reveal--stage-depth:not(.reveal--chain) {
  transform: translate3d(0, 48px, 0) scale(0.988);
  filter: blur(4px);
  transition:
    opacity 1.18s cubic-bezier(0.16, 1, 0.28, 1),
    transform 1.28s cubic-bezier(0.16, 1, 0.28, 1),
    filter 0.95s ease-out;
}

.reveal.reveal--stage-depth.reveal--stage-delay:not(.reveal--chain) {
  transition-delay: 0.1s, 0.1s, 0.06s;
}

/* Section titles: lateral drift */
.reveal.reveal--title-shift:not(.reveal--chain) {
  transform: translate3d(-18px, 10px, 0);
  filter: blur(3px);
  transition:
    opacity 0.88s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.02s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.72s ease-out;
}

.reveal.reveal--title-shift.reveal--title-delay:not(.reveal--chain) {
  transition-delay: 0.08s, 0.08s, 0.04s;
}

/* Motion modifiers are declared after generic .is-visible — must re-assert deblur + final transform */
.reveal.reveal--soft-rise:not(.reveal--chain).is-visible,
.reveal.reveal--stage-depth:not(.reveal--chain).is-visible,
.reveal.reveal--title-shift:not(.reveal--chain).is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

/* --- Editorial chains (stagger + different eases per row) --- */
.reveal--chain > * {
  opacity: 0;
  will-change: opacity, transform, filter;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease-out;
}

.reveal--chain.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.reveal--chain.is-visible > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal--chain.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal--chain.is-visible > *:nth-child(3) {
  transition-delay: 0.22s;
}
.reveal--chain.is-visible > *:nth-child(4) {
  transition-delay: 0.34s;
}
.reveal--chain.is-visible > *:nth-child(5) {
  transition-delay: 0.46s;
}
.reveal--chain.is-visible > *:nth-child(6) {
  transition-delay: 0.56s;
}

/* Floating showcase intro: tiered vertical rhythm (no blur — blur was overriding is-visible) */
.reveal--chain.reveal--chain--float > * {
  transform: translate3d(0, 36px, 0) scale(0.992);
  transition:
    opacity 1.12s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.12s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--chain.reveal--chain--float > *:nth-child(1) {
  transform: translate3d(0, 14px, 0) scale(0.985);
}

.reveal--chain.reveal--chain--float > *:nth-child(2) {
  transform: translate3d(0, 42px, 0) scale(0.99);
  transition-duration: 1.05s, 1.18s;
}

.reveal--chain.reveal--chain--float > *:nth-child(3) {
  transform: translate3d(0, 26px, 0);
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1), cubic-bezier(0.22, 1, 0.45, 1);
  transition-duration: 0.95s, 1.08s;
}

.reveal--chain.reveal--chain--float.is-visible > *:nth-child(1),
.reveal--chain.reveal--chain--float.is-visible > *:nth-child(2),
.reveal--chain.reveal--chain--float.is-visible > *:nth-child(3) {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--chain.reveal--chain--float.is-visible > *:nth-child(1) {
  transition-delay: 0s, 0s;
}
.reveal--chain.reveal--chain--float.is-visible > *:nth-child(2) {
  transition-delay: 0.12s, 0.14s;
}
.reveal--chain.reveal--chain--float.is-visible > *:nth-child(3) {
  transition-delay: 0.28s, 0.3s;
}

/* About: image vs copy — opposing directions */
.reveal--chain.reveal--chain--about > *:nth-child(1) {
  transform: translate3d(-7%, 0, 0) scale(1.035);
  filter: saturate(0.82) blur(4px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.28s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease-out;
}

.reveal--chain.reveal--chain--about > *:nth-child(2) {
  transform: translate3d(22px, 20px, 0);
  filter: blur(4px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.4, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.4, 1),
    filter 0.78s ease-out;
}

.reveal--chain.reveal--chain--about.is-visible > *:nth-child(1) {
  transition-delay: 0s, 0s, 0s;
}
.reveal--chain.reveal--chain--about.is-visible > *:nth-child(2) {
  transition-delay: 0.14s, 0.16s, 0.1s;
}

/* Why row: alternating lateral + depth */
.reveal--chain.reveal--chain--why > .why-item:nth-child(1) {
  transform: translate3d(-20px, 32px, 0);
  filter: blur(3px);
  transition:
    opacity 0.92s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.65s ease-out;
}

.reveal--chain.reveal--chain--why > .why-item:nth-child(2) {
  transform: translate3d(0, 44px, 0) scale(0.99);
  filter: blur(5px);
  transition:
    opacity 1.02s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.08s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.82s ease-out;
}

.reveal--chain.reveal--chain--why > .why-item:nth-child(3) {
  transform: translate3d(18px, 28px, 0);
  filter: blur(3px);
  transition:
    opacity 0.98s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.02s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.7s ease-out;
}

.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(1) {
  transition-delay: 0s, 0s, 0s;
}
.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(2) {
  transition-delay: 0.1s, 0.12s, 0.06s;
}
.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(3) {
  transition-delay: 0.22s, 0.24s, 0.12s;
}

/* CTA: tighter stack, quick then slow headline */
.reveal--chain.reveal--chain--cta > *:nth-child(1) {
  transform: translate3d(0, 10px, 0);
  filter: blur(4px);
  transition:
    opacity 0.72s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.78s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.55s ease-out;
}

.reveal--chain.reveal--chain--cta > *:nth-child(2) {
  transform: translate3d(0, 36px, 0) scale(0.99);
  filter: blur(6px);
  transition:
    opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.22s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.88s ease-out;
}

.reveal--chain.reveal--chain--cta > *:nth-child(3) {
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease-out;
}

.reveal--chain.reveal--chain--cta > *:nth-child(4),
.reveal--chain.reveal--chain--cta > *:nth-child(5) {
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.82s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.88s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.55s ease-out;
}

.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(2) {
  transition-delay: 0.08s, 0.1s, 0.04s;
}
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(3) {
  transition-delay: 0.22s, 0.24s, 0.12s;
}
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(4) {
  transition-delay: 0.34s, 0.36s, 0.2s;
}
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(5) {
  transition-delay: 0.44s, 0.46s, 0.26s;
}

/* Footer: long, quiet fade */
.reveal--chain.reveal--chain--footer > * {
  transform: translate3d(0, 16px, 0);
  filter: blur(2px);
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s ease-out;
}

.reveal--chain.reveal--chain--footer.is-visible > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal--chain.reveal--chain--footer.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal--chain.reveal--chain--footer.is-visible > *:nth-child(3) {
  transition-delay: 0.24s;
}

/* Chain motion variants use more specific selectors than .reveal--chain.is-visible > * — reset filter + transform */
.reveal--chain.reveal--chain--about.is-visible > *:nth-child(1),
.reveal--chain.reveal--chain--about.is-visible > *:nth-child(2) {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(1),
.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(2),
.reveal--chain.reveal--chain--why.is-visible > .why-item:nth-child(3) {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(1),
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(2),
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(3),
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(4),
.reveal--chain.reveal--chain--cta.is-visible > *:nth-child(5) {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--chain.reveal--chain--footer.is-visible > * {
  filter: none;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal:not(.reveal--chain),
  .reveal--chain > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-after__title--enter {
    opacity: 1 !important;
    animation: none !important;
  }
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 2.2vw, 2rem);
}

.card h3 {
  font-size: 1.6rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

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

.shot-lg {
  grid-column: span 7;
  min-height: 420px;
}

.shot-sm {
  grid-column: span 5;
  min-height: 420px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  min-height: 460px;
  object-fit: cover;
  width: 100%;
}

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

.why-item {
  border-top: 1px solid var(--text);
  padding-top: 0.9rem;
}

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

.price-tag {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--text);
}

.cta {
  background: #ece8e1;
  border: 1px solid var(--line);
  text-align: center;
}

.cta p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  font-size: 0.95rem;
}

.site-footer--dark {
  border-top: none;
  background: #252320;
  color: rgb(255 255 255 / 0.88);
  padding: 0;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.25rem 2.5rem;
  padding: 2.75rem 0 2.35rem;
  align-items: start;
}

.site-footer__brand {
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #fff;
}

.site-footer__brand:hover {
  color: rgb(255 255 255 / 0.92);
}

.site-footer__tagline {
  margin: 0.4rem 0 0.85rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgb(255 255 255 / 0.62);
}

.site-footer__address {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.58);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.site-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.22);
  color: rgb(255 255 255 / 0.88);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-footer__soc:hover {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.35);
}

.site-footer__soc-svg {
  width: 1.05rem;
  height: 1.05rem;
}

.site-footer__nav-col {
  min-width: 0;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgb(255 255 255 / 0.78);
  transition: color 0.15s ease;
}

.site-footer__list a:hover {
  color: #fff;
}

.site-footer__list a[aria-current="page"] {
  color: #e8d5bc;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 0.95rem 0 1.15rem;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.45);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__legal a:hover {
  color: rgb(255 255 255 / 0.75);
}

.site-footer__legal-sep {
  opacity: 0.45;
  font-weight: 400;
}

.site-footer__copy {
  margin: 0;
  letter-spacing: 0.1em;
}

[dir="rtl"] .site-footer__bottom-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-footer__legal {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__main {
    grid-template-columns: 1fr;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 2.6rem;
}

.page-hero p {
  max-width: 620px;
}

/* Campaign page — hero + index list (reference: bridal campaign listing) */
.page-hero--campaign {
  padding-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(180deg, #faf8f5 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero--campaign__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.page-hero--campaign .eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6e6a64;
}

.page-hero--campaign h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-hero--campaign__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.page-hero .plan-brand-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}

.plan-packages-section {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.plan-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 1.25rem;
}

.card--plan h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.plan-pkg-body {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.card--plan .price-tag {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

/* Plan listing: luxury reference layout (image + tags + price + CTA line) */
.plan-page-main {
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.page-plan.page-leaving .plan-page-main {
  opacity: 0;
  transform: translateY(6px);
}

/* Plan hero: reference — light panel, bold tracked EN title + lighter sublines */
.plan-page-head {
  padding: clamp(3.25rem, 9vw, 6rem) 1.5rem clamp(2.5rem, 6vw, 3.75rem);
  text-align: center;
  background: #f2f2f2;
}

.plan-page-head__inner {
  max-width: min(100%, 38rem);
  margin: 0 auto;
}

.plan-page-kicker {
  margin: 0 0 clamp(1.25rem, 3.2vw, 1.75rem);
  padding: 0 0.5rem;
  box-sizing: border-box;
  font-family: var(--font-label);
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #333;
  text-indent: 0.21em;
}

[dir="rtl"] .plan-page-kicker {
  text-indent: 0;
  letter-spacing: 0.28em;
}

.plan-page-sub {
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-label);
  font-size: clamp(0.86rem, 1.7vw, 1.02rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #333;
}

.plan-page-sub + .plan-page-sub {
  margin-top: 0.5rem;
}

.plan-brand-note--center {
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  text-align: center;
  max-width: 34rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.plan-sales-hero-cta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem 0.85rem;
}

.plan-sales-ladder {
  padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(2.8rem, 7vw, 4.8rem);
  background: #fff;
}

.plan-sales-ladder--embedded {
  padding: clamp(1.25rem, 3.5vw, 2rem) 0 clamp(1.75rem, 4.5vw, 2.75rem);
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  background: transparent;
}

.plan-sales-ladder__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(1rem, 2.8vw, 1.6rem);
}

.plan-sales-ladder__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-sales-ladder__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.32;
  font-weight: 500;
  color: var(--text);
}

.plan-sales-ladder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.14fr) minmax(0, 0.93fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.plan-tier-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}

.plan-tier-card:hover {
  transform: scale(1.018);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.08);
}

.plan-tier-card--featured {
  border-color: #8f8563;
  background: linear-gradient(180deg, #fefcf7 0%, #fff 100%);
  box-shadow:
    0 28px 48px rgb(0 0 0 / 0.1),
    0 0 0 1px rgb(143 133 99 / 0.35),
    0 0 28px rgb(143 133 99 / 0.22);
  transform: scale(1.11);
  transform-origin: center;
  position: relative;
  z-index: 3;
}

.plan-tier-card__badge {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f8563;
}

.plan-tier-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.25;
}

.plan-tier-card__price {
  margin: 0.45rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #6f664a;
}

.plan-tier-card__pill {
  display: inline-flex;
  margin: 0 0 0.44rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid rgb(143 133 99 / 0.5);
  background: rgb(143 133 99 / 0.12);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f664a;
}

.plan-tier-card ul {
  margin: 0 0 0.7rem;
  padding-left: 1rem;
}

.plan-tier-card li {
  margin: 0 0 0.32rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  line-height: 1.58;
}

.plan-tier-card__link {
  font-family: var(--font-label);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.plan-tier-card--entry,
.plan-tier-card--premium {
  opacity: 0.95;
  filter: saturate(0.9);
}

.plan-tier-card--mid {
  opacity: 1;
  filter: none;
  padding: clamp(1.2rem, 2.7vw, 1.85rem);
}

.plan-tier-card__link--primary {
  display: inline-block;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgb(143 133 99 / 0.45);
  text-decoration: none;
  background: rgb(143 133 99 / 0.1);
  font-weight: 600;
}

.plan-tier-card__justify {
  margin: 0.2rem 0 0.72rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.plan-tier-card__micro {
  margin: 0.62rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.plan-tier-card__emotion {
  margin: 0.48rem 0 0.7rem;
  font-size: 0.84rem;
  line-height: 1.56;
  color: rgb(58 53 44 / 0.9);
}

.plan-tier-card--entry .plan-tier-card__name,
.plan-tier-card--entry .plan-tier-card__price,
.plan-tier-card--premium .plan-tier-card__name,
.plan-tier-card--premium .plan-tier-card__price {
  color: rgb(47 43 37 / 0.9);
}

.plan-tier-card--premium {
  padding: clamp(1.12rem, 2.35vw, 1.62rem);
}

.plan-tier-card--mid .plan-tier-card__price {
  font-size: clamp(1.45rem, 2.35vw, 1.9rem);
  font-weight: 600;
}

.plan-sales-ladder__decision-guide {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.plan-upgrade-moment {
  margin: 0.85rem auto 0;
  max-width: 42rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(0 0 0 / 0.08);
  text-align: center;
}

.plan-upgrade-moment__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
}

.plan-upgrade-moment__list {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.plan-upgrade-moment__cta {
  margin: 0.42rem 0 0;
  font-size: 0.82rem;
}

.plan-upgrade-moment__cta a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.plan-mini-compare {
  margin: 0.8rem auto 0;
  max-width: 42rem;
  text-align: center;
}

.plan-mini-compare p {
  margin: 0.32rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.plan-card-lux--recommended {
  border-color: #8f8563;
  box-shadow:
    0 24px 44px rgb(0 0 0 / 0.1),
    0 0 0 1px rgb(143 133 99 / 0.26);
}

.plan-lux-grid-wrap {
  padding: 0 0 clamp(3rem, 8vw, 5rem);
  background: #fff;
}

.plan-lux-grid-wrap--secondary {
  padding-top: clamp(0.2rem, 1.2vw, 0.8rem);
}

.plan-lux-grid--secondary-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.6vw, 1.8rem);
}

.plan-card-lux--simple-other {
  padding-bottom: 0.4rem;
  border-color: rgb(0 0 0 / 0.08);
  box-shadow: none;
  background: rgb(255 255 255 / 0.82);
  transform: none !important;
}

.plan-card-lux__desc {
  margin: 0.32rem 1.15rem 0;
  font-family: var(--font-label);
  font-size: 0.9rem;
  line-height: 1.56;
  color: var(--muted);
}

.plan-card-lux__simple-price {
  margin: 0.36rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.03rem;
  line-height: 1.3;
  color: #7c745b;
}

.plan-lux-grid--secondary-simple .plan-card-lux:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(0 0 0 / 0.05);
}

.plan-section-head {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.plan-section-head__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-section-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.3;
  font-weight: 500;
}

.plan-section-head__lead {
  margin: 0.38rem 0 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.plan-lux-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 820px) {
  .plan-lux-grid {
    grid-template-columns: 1fr;
  }

  .plan-lux-grid--secondary-simple {
    grid-template-columns: 1fr;
  }
}

.plan-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.6vw, 1.8rem);
}

@media (min-width: 1024px) {
  .plan-location-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .plan-location-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card-lux {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.plan-card-lux:hover {
  box-shadow: 0 22px 56px rgb(0 0 0 / 0.08);
  transform: translateY(-2px);
}

.plan-card-lux:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

.plan-card-lux__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ece9e4;
}

.plan-card-lux__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.plan-card-lux:hover .plan-card-lux__media img {
  transform: scale(1.03);
}

.plan-card-lux__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 1rem 1.15rem 0;
}

.plan-chip {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line);
  line-height: 1.2;
}

.plan-card-lux__title {
  margin: 0.85rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
}

.plan-card-lux__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin: 1rem 1.15rem 0;
}

.plan-card-lux__yen-label {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Plan price: reference layout — large ex-tax amount + 円 + (税別), smaller incl. */
.plan-price-ref .plan-price-ref__block {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.plan-price-ref__ex {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.05em;
}

.plan-price-ref__amount {
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2.85vw, 1.78rem);
  font-weight: 500;
  color: #6b6348;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.plan-price-ref__yen {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.85vw, 1.18rem);
  font-weight: 500;
  color: #6b6348;
  line-height: 1.15;
}

.plan-price-ref__tag--ex {
  font-family: var(--font-label);
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b6348;
  line-height: 1.2;
  white-space: nowrap;
}

.plan-price-ref__in {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.06em;
  color: var(--text);
}

.plan-price-ref__amount-in,
.plan-price-ref__tag-in {
  font-family: var(--font-label);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.25;
}

.plan-price-ref__yen--in {
  font-family: var(--font-label);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 500;
  color: var(--text);
}

.plan-price-ref--detail .plan-price-ref__amount {
  font-size: clamp(1.55rem, 3.1vw, 2rem);
}

.plan-price-ref--detail .plan-price-ref__yen {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
}

.plan-price-ref--detail .plan-price-ref__tag--ex {
  font-size: clamp(0.62rem, 1.15vw, 0.72rem);
}

.plan-price-ref--detail .plan-price-ref__amount-in,
.plan-price-ref--detail .plan-price-ref__tag-in,
.plan-price-ref--detail .plan-price-ref__yen--in {
  font-size: clamp(0.84rem, 1.45vw, 0.95rem);
}

.plan-card-lux__note {
  margin: 0.35rem 1.15rem 0;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgb(90 88 82 / 0.9);
}

.plan-card-lux__cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.35rem 1.15rem 1.35rem;
  padding-top: 0.15rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.plan-card-lux__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--line) 0%,
    var(--line) calc(100% - 10px),
    transparent calc(100% - 10px)
  );
  position: relative;
  min-width: 2rem;
}

.plan-card-lux__rule::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text);
  transform: translateY(-50%);
  opacity: 0.5;
}

[dir="rtl"] .plan-card-lux__rule {
  transform: scaleX(-1);
}

.plan-upgrade-cta {
  padding: 0 0 clamp(2.6rem, 7vw, 4.2rem);
}

.plan-upgrade-cta__inner {
  border: 1px solid var(--line);
  background: #f8f7f4;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  text-align: center;
}

.plan-upgrade-cta__eyebrow {
  margin: 0 0 0.32rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-upgrade-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 2.1vw, 1.5rem);
  line-height: 1.35;
  font-weight: 500;
}

.plan-upgrade-cta__body {
  margin: 0.55rem auto 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--muted);
}

.plan-upgrade-cta__actions {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem 0.85rem;
}

@media (max-width: 960px) {
  .plan-sales-ladder__grid {
    grid-template-columns: 1fr;
  }

  .plan-tier-card--featured {
    transform: none;
  }

  .plan-tier-card:hover {
    transform: none;
  }

  .plan-tier-card--entry,
  .plan-tier-card--premium {
    opacity: 1;
  }
}

.plan-detail-lead--kanto {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgb(90 88 82 / 0.95);
}

.plan-price-ref__block--stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.plan-price-ref__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.plan-price-ref__route {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgb(90 88 82 / 0.92);
  min-width: min(100%, 12rem);
}

/* Plan detail */
.page-plan-detail .plan-detail-main {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.plan-detail-toolbar {
  padding: clamp(1.25rem, 4vw, 2rem) 0 0;
}

.plan-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-label);
  text-decoration: none;
  color: var(--muted);
}

.plan-detail-back:hover {
  color: var(--text);
}

.plan-detail-hero {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 200px;
  max-height: 52vh;
  overflow: hidden;
  background: #ece9e4;
}

@media (max-width: 700px) {
  .plan-detail-hero {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

.plan-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-detail-content {
  padding: 0 0 2rem;
}

.plan-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.plan-detail-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.25;
}

.plan-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-bottom: 1.5rem;
}

.plan-detail-body {
  margin: 0 0 2rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 46rem;
}

.plan-detail-rich {
  margin: 0 0 2rem;
  max-width: 46rem;
  color: var(--text);
}

.plan-detail-rich__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.24;
}

.plan-detail-rich h3 {
  margin: 1.5rem 0 0.52rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-detail-rich p {
  margin: 0 0 0.72rem;
  font-size: 0.99rem;
  line-height: 1.72;
}

.plan-detail-rich ul {
  margin: 0.2rem 0 0.95rem;
  padding-left: 1.06rem;
}

.plan-detail-rich li {
  margin: 0 0 0.44rem;
  line-height: 1.66;
}

.plan-detail-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.plan-detail-card {
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 0.62);
  padding: 0.62rem 0.72rem 0.68rem;
}

.plan-detail-card__label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-detail-card__value {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 0 0 0.7rem;
}

.plan-detail-block {
  border-top: 1px solid rgb(0 0 0 / 10%);
  padding-top: 0.7rem;
}

.plan-detail-more {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.plan-detail-more__link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.plan-detail-more__link:hover {
  opacity: 0.72;
}

@media (max-width: 640px) {
  .plan-detail-snapshot {
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }

  .plan-detail-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .plan-detail-rich__title {
    font-size: clamp(1.3rem, 6.6vw, 1.55rem);
  }

  .plan-detail-rich p,
  .plan-detail-rich li {
    font-size: 0.95rem;
    line-height: 1.68;
  }
}

.plan-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.plan-detail-actions .btn {
  text-decoration: none;
}

.plan-detail-actions .btn-primary,
.plan-detail-actions .btn-ghost {
  min-width: 10rem;
}

.plan-detail-actions .btn-primary {
  background: var(--text);
  color: #faf9f7;
  border-color: var(--text);
}

.plan-detail-actions .btn-primary:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.plan-detail-actions .btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.plan-detail-actions .btn-ghost:hover {
  background: var(--surface);
  border-color: var(--text);
  color: var(--text);
}

.content-narrow {
  width: min(100% - 3rem, 860px);
  margin: 0 auto;
}

.contact-wechat {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  scroll-margin-top: calc(5rem + env(safe-area-inset-top, 0px));
}

.contact-wechat__inner {
  background: rgb(255 255 255 / 0.92);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.contact-wechat__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--text);
}

.contact-wechat__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-wechat__id-line {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text);
}

.contact-wechat__id {
  margin-left: 0.35rem;
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-wechat__copy {
  margin-bottom: 0.85rem;
}

.contact-wechat__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d8d4cf;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  max-width: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

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

.form-row {
  margin-bottom: 1rem;
}

@media (max-width: 940px) {
  .grid-2,
  .about,
  .pricing,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .shot-lg,
  .shot-sm {
    grid-column: span 12;
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
    font-size: 0.92rem;
  }

  .hero:not(.hero--video) {
    min-height: 76vh;
  }

  .container,
  .content-narrow,
  .hero-content {
    width: min(100% - 2rem, var(--max-width));
  }
}

/* Home: plan showcase */
.page-home .home-plan-showcase {
  padding: clamp(88px, 10vw, 132px) 0 clamp(84px, 10vw, 120px);
  position: relative;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.42) 0, rgb(255 255 255 / 0.42) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, #f7f3ee 0%, #f3eee7 100%);
  background-size: 25% 100%, 100% 100%;
  border-top: 1px solid rgb(42 38 32 / 0.08);
  overflow: hidden;
}

.page-home .home-plan-showcase::before {
  content: "Plan";
  position: absolute;
  top: clamp(18px, 3.4vw, 42px);
  left: clamp(18px, 5vw, 72px);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4.8rem, 14vw, 12rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: rgb(130 112 92 / 0.08);
  pointer-events: none;
}

.page-home .home-plan-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(240px, 0.58fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto clamp(38px, 5vw, 60px);
  text-align: left;
  position: relative;
  z-index: 1;
}

.page-home .home-plan-showcase__head-main {
  max-width: 48rem;
}

.page-home .home-plan-showcase__kicker {
  margin: 0;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #615447;
}

.page-home .home-plan-showcase__title {
  margin: 0.7rem 0 0;
  max-width: 48rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(2.7rem, 6.1vw, 5.5rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #271d16;
}

.page-home .home-plan-showcase__lead {
  margin: 0 0 0.5rem;
  max-width: 18rem;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #726355;
}

.page-home .home-plan-showcase__stage.float-carousel--horizontal {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-home .home-plan-showcase .float-carousel__shell {
  width: min(100% - 2rem, 1380px);
  max-width: 1380px;
  left: auto;
  transform: none;
  margin: 0 auto;
}

.page-home .home-plan-showcase .float-carousel__viewport {
  padding: 0 clamp(3.8rem, 8.8vw, 8.5rem);
  overflow: hidden;
}

.page-home .home-plan-showcase .float-carousel__track {
  gap: clamp(1.4rem, 2.9vw, 2.6rem);
  align-items: flex-start;
}

.page-home .home-plan-showcase .float-carousel__btn {
  width: 2.7rem;
  height: 2.7rem;
  margin-top: -1.35rem;
  border-color: rgb(39 29 22 / 0.1);
  background: rgb(253 251 248 / 0.95);
  box-shadow: 0 10px 22px rgb(39 29 22 / 0.1);
}

.page-home .home-plan-showcase .float-carousel__btn--prev {
  left: max(0.4rem, env(safe-area-inset-left, 0px));
}

.page-home .home-plan-showcase .float-carousel__btn--next {
  right: max(0.4rem, env(safe-area-inset-right, 0px));
}

.page-home .home-plan-showcase .float-card {
  --plan-card-shift: 0px;
  width: clamp(300px, 28vw, 380px);
  max-width: 380px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  color: inherit;
  text-decoration: none;
  opacity: 0.62;
  transform: translate3d(0, var(--plan-card-shift), 0);
  transition: transform 0.56s ease, opacity 0.4s ease;
  z-index: 1;
}

.page-home .home-plan-showcase .float-card--active {
  opacity: 1;
  transform: translate3d(0, calc(var(--plan-card-shift) - 30px), 0);
  z-index: 3;
}

.page-home .home-plan-showcase .float-card:focus-visible {
  outline-offset: 6px;
}

.page-home .home-plan-card__media {
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #d9d2c9;
}

.page-home .home-plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.page-home .home-plan-showcase .float-card--active:hover .home-plan-card__media img,
.page-home .home-plan-showcase .float-card--active:focus-visible .home-plan-card__media img {
  transform: scale(1.03);
}

.page-home .home-plan-card__meta {
  position: relative;
  width: min(90%, 328px);
  margin: -3.1rem 0 0 auto;
  padding: 1rem 1.3rem 0.25rem;
  background: linear-gradient(180deg, rgb(250 247 242 / 0.97) 0%, rgb(245 239 231 / 0.97) 100%);
  box-shadow: 0 24px 46px rgb(39 29 22 / 0.08);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.page-home .home-plan-card__index {
  display: block;
  margin-bottom: 0.42rem;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: rgb(127 111 94 / 0.62);
}

.page-home .home-plan-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.page-home .home-plan-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.16rem 0.52rem;
  border: 1px solid rgb(39 29 22 / 0.24);
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4f4338;
}

.page-home .home-plan-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 2.35vw, 2.28rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #271d16;
  text-wrap: balance;
}

.page-home .home-plan-card__body {
  margin: 0.8rem 0 0;
  min-height: 3.7em;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  line-height: 1.68;
  letter-spacing: 0.02em;
  color: #6a5c4e;
}

.page-home .home-plan-card__price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "label label"
    "price note";
  align-items: end;
  gap: 0.28rem 0.7rem;
  margin: 1.25rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgb(39 29 22 / 0.08);
  color: #332821;
}

.page-home .home-plan-card__price-label {
  grid-area: label;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7c6a5a;
}

.page-home .home-plan-card__price {
  grid-area: price;
  display: inline-flex;
  align-items: baseline;
  gap: 0.16rem;
}

.page-home .home-plan-card__currency {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #8f744e;
}

.page-home .home-plan-card__amount {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #8f744e;
}

.page-home .home-plan-card__price-note {
  grid-area: note;
  justify-self: start;
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #76665a;
}

.page-home .home-plan-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: min(100% - 2rem, 1180px);
  margin: clamp(1.2rem, 4vw, 2rem) auto 0;
}

.page-home .home-plan-showcase .float-carousel__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.page-home .home-plan-showcase__more {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgb(39 29 22 / 0.16);
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #271d16;
  text-decoration: none;
}

.page-home .home-plan-showcase__more::after {
  content: "";
  width: 4.75rem;
  height: 1px;
  background: rgb(39 29 22 / 0.24);
}

.page-home .home-plan-showcase__more:hover {
  color: #8f744e;
  border-bottom-color: rgb(143 116 78 / 0.36);
}

.page-home .home-plan-showcase__more:hover::after {
  background: rgb(143 116 78 / 0.36);
}

.page-home .home-plan-card--tokyo {
  --plan-card-shift: 108px;
  width: clamp(280px, 22vw, 320px);
}

.page-home .home-plan-card--tokyo .home-plan-card__meta {
  margin-right: auto;
  margin-left: 0;
  transform: translateX(-1.5rem);
}

.page-home .home-plan-card--fuji {
  --plan-card-shift: -18px;
  width: clamp(350px, 34vw, 456px);
}

.page-home .home-plan-card--fuji .home-plan-card__media {
  aspect-ratio: 4 / 3.5;
}

.page-home .home-plan-card--fuji .home-plan-card__meta {
  width: min(87%, 352px);
  margin-top: -3.4rem;
}

.page-home .home-plan-card--kanto {
  --plan-card-shift: 156px;
  width: clamp(286px, 23vw, 332px);
}

.page-home .home-plan-card--kanto .home-plan-card__media {
  aspect-ratio: 4 / 5;
}

.page-home .home-plan-card--kanto .home-plan-card__meta {
  transform: translateX(1.45rem);
}

.page-home .home-plan-card--shonan {
  --plan-card-shift: 62px;
  width: clamp(300px, 25vw, 350px);
}

.page-home .home-plan-card--shonan .home-plan-card__media {
  aspect-ratio: 4 / 4.8;
}

.page-home .home-plan-card--shonan .home-plan-card__meta {
  margin-right: auto;
  margin-left: 0;
  transform: translateX(-1rem);
}

.page-home .home-plan-card--hokkaido {
  --plan-card-shift: 194px;
  width: clamp(334px, 29vw, 404px);
}

.page-home .home-plan-card--hokkaido .home-plan-card__media {
  aspect-ratio: 4 / 3.15;
}

.page-home .home-plan-card--hokkaido .home-plan-card__meta {
  width: min(84%, 318px);
  margin-top: -3.5rem;
}

.page-home .home-plan-card--traditional {
  --plan-card-shift: 96px;
  width: clamp(274px, 22vw, 314px);
}

.page-home .home-plan-card--traditional .home-plan-card__media {
  aspect-ratio: 4 / 5.35;
}

.page-home .home-plan-card--traditional .home-plan-card__meta {
  transform: translateX(1.35rem);
}

.page-home .home-costume {
  padding-block: calc(var(--space-section) * 0.85);
  border-top: 1px solid var(--line);
}

.page-home .home-costume__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.page-home .home-costume__visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgb(31 31 28 / 0.08);
  box-shadow: 0 22px 55px rgb(31 31 28 / 0.08);
}

.page-home .home-costume__visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.page-home .home-costume__body {
  margin-top: 1rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-home .home-combos {
  padding-block: calc(var(--space-section) * 0.9);
  background: rgb(252 251 249);
  border-top: 1px solid var(--line);
}

.page-home .home-combos__lead {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 40rem;
}

.page-home .home-combos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.page-home .home-combos__card {
  background: var(--surface);
  border: 1px solid rgb(31 31 28 / 0.1);
  border-radius: 4px;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-home .home-combos__card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-home .home-combos__card-body {
  margin: 0.65rem 0 1.1rem;
  flex: 1;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-home .home-combos__card-link {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgb(184 164 138 / 0.55);
  align-self: flex-start;
  padding-bottom: 0.12rem;
}

.page-home .home-combos__card-link:hover {
  border-bottom-color: rgb(31 31 28 / 0.55);
}

.page-home .home-gallery-band {
  position: relative;
  padding: clamp(3.25rem, 8vw, 5rem) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgb(22 22 24 / 0.72), rgb(22 22 24 / 0.42)),
    url("images/gallery/240514Mt.Fuji/WMA_5461.jpg") center / cover no-repeat;
  color: rgb(252 250 247);
}

.page-home .home-gallery-band__inner {
  max-width: 34rem;
}

.page-home .home-gallery-band__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgb(252 250 247);
}

.page-home .home-gallery-band__copy p {
  margin: 1rem 0 1.5rem;
  color: rgb(252 250 247 / 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-home .home-gallery-band__btn {
  border-color: rgb(255 255 255 / 0.55);
  background: rgb(255 255 255 / 0.96);
  color: #111;
}

.page-home .home-gallery-band__btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.page-home .home-end-tiles {
  position: relative;
  padding: clamp(3.2rem, 7vw, 5rem) 0 calc(var(--space-section) * 0.72);
  background: linear-gradient(180deg, rgb(248 245 240) 0%, rgb(244 238 230) 100%);
}

.page-home .home-end-tiles::before {
  content: "Guide";
  position: absolute;
  top: clamp(12px, 2vw, 22px);
  left: clamp(18px, 5vw, 64px);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4.2rem, 12vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: rgb(120 101 80 / 0.07);
  pointer-events: none;
}

.page-home .home-end-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  position: relative;
  z-index: 1;
}

.page-home .home-end-tile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(90px, 0.85fr);
  align-items: end;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: clamp(9rem, 21vw, 12.5rem);
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem) clamp(1.45rem, 3.5vw, 2.15rem);
  background:
    linear-gradient(180deg, rgb(49 50 55) 0%, rgb(33 34 38) 100%);
  color: rgb(252 250 247);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.page-home .home-end-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.06) 0%, transparent 34%),
    linear-gradient(180deg, transparent 45%, rgb(255 255 255 / 0.035) 100%);
  pointer-events: none;
}

.page-home .home-end-tile:nth-child(2) {
  transform: translateY(clamp(18px, 2.8vw, 34px));
}

.page-home .home-end-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgb(31 31 28 / 0.16);
  background:
    linear-gradient(180deg, rgb(43 45 49) 0%, rgb(28 30 34) 100%);
}

.page-home .home-end-tile:nth-child(2):hover {
  transform: translateY(clamp(14px, 2.3vw, 30px));
}

.page-home .home-end-tile__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  align-self: stretch;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-home .home-end-tile__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: none;
  line-height: 0.88;
}

.page-home .home-end-tile__sub {
  max-width: 17rem;
  font-size: clamp(0.84rem, 1.55vw, 0.95rem);
  line-height: 1.68;
  letter-spacing: 0.05em;
  color: rgb(252 250 247 / 0.82);
}

.page-home .home-end-tile__rule {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-home .home-end-tile__line {
  flex: 1;
  max-width: 168px;
  height: 1px;
  background: rgb(255 255 255 / 0.55);
}

.page-home .home-end-tile__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(252 250 247);
  flex-shrink: 0;
}

.contact-faq {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: rgb(252 251 249);
}

.contact-faq__h {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
}

.contact-faq__list {
  margin: 0;
}

.contact-faq__item {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.contact-faq__item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-faq__item dt {
  margin: 0;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact-faq__item dd {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.flow-page-hero {
  background:
    linear-gradient(180deg, rgb(248 245 240) 0%, rgb(252 251 249) 100%);
  border-bottom: 1px solid var(--line);
}

.flow-page {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: rgb(252 251 249);
}

.flow-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.flow-page__intro {
  position: sticky;
  top: 6rem;
}

.flow-page__kicker {
  margin: 0 0 0.8rem;
  font-family: var(--font-label);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(118 102 90);
}

.flow-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 0.98;
  font-weight: 400;
  color: rgb(39 29 22);
}

.flow-page__body {
  margin: 1.1rem 0 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.flow-page__visual {
  position: relative;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  width: min(100%, 29rem);
  aspect-ratio: 5 / 6.4;
}

.flow-page__visual-main,
.flow-page__visual-float {
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 60px rgb(39 29 22 / 0.1);
}

.flow-page__visual-main {
  width: 82%;
  height: 78%;
}

.flow-page__visual-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 48%;
  border: 8px solid rgb(252 251 249);
}

.flow-steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.15rem;
  width: 1px;
  background: linear-gradient(180deg, rgb(138 116 96 / 0.28) 0%, rgb(138 116 96 / 0.08) 100%);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  padding: clamp(1.35rem, 2.8vw, 1.8rem);
  border: 1px solid rgb(39 29 22 / 0.09);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.95) 0%, rgb(248 245 240 / 0.9) 100%);
  box-shadow: 0 18px 40px rgb(39 29 22 / 0.05);
  overflow: hidden;
}

.flow-step::after {
  content: attr(data-step-deco);
  position: absolute;
  right: 1rem;
  bottom: -0.12em;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: 0.8;
  color: rgb(122 102 84 / 0.07);
  pointer-events: none;
}

.flow-step__num {
  position: relative;
  z-index: 1;
  min-width: 2.5rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgb(138 116 96);
}

.flow-step__copy {
  position: relative;
  z-index: 1;
}

.flow-step__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.18;
  color: rgb(39 29 22);
}

.flow-step__copy p:last-child {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.flow-step__label {
  margin: 0 0 0.45rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(118 102 90);
}

.flow-step:nth-child(2),
.flow-step:nth-child(4) {
  transform: translateX(clamp(0.5rem, 2vw, 1.6rem));
}

.flow-cta-band {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background: rgb(252 251 249);
}

.flow-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid rgb(39 29 22 / 0.08);
  background: linear-gradient(135deg, rgb(243 237 229) 0%, rgb(250 247 242) 100%);
}

.flow-cta-band__copy {
  max-width: 40rem;
}

.flow-cta-band__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-label);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(118 102 90);
}

.flow-cta-band__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: rgb(39 29 22);
}

.flow-cta-band__body {
  margin: 0.8rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.flow-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.flow-cta-band__visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.flow-cta-band__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.legal-doc {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.legal-doc__intro {
  max-width: 40rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-doc .content-narrow h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.legal-doc .content-narrow h2:first-of-type {
  margin-top: 0;
}

.legal-doc .content-narrow p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal-doc .content-narrow a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgb(184 164 138 / 0.75);
  text-underline-offset: 0.15em;
}

.legal-doc__note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .page-home .floating-showcase .float-carousel__viewport,
  .page-home .home-plan-showcase .float-carousel__viewport {
    padding-inline: 0.5rem;
  }

  .page-home .floating-showcase .float-card,
  .page-home .home-plan-showcase .float-card {
    width: min(calc(100vw - 1rem), 26rem);
  }

  .flow-page__grid,
  .flow-cta-band__inner {
    grid-template-columns: 1fr;
  }

  .flow-page__intro {
    position: static;
  }

  .flow-page__visual {
    width: min(100%, 32rem);
  }

  .flow-steps::before {
    left: 1rem;
  }

  .flow-step:nth-child(2),
  .flow-step:nth-child(4) {
    transform: none;
  }

  .flow-cta-band__actions {
    justify-content: flex-start;
  }

  .page-home .home-plan-showcase {
    padding: 72px 0 88px;
    background-size: 50% 100%, 100% 100%;
  }

  .page-home .home-plan-showcase::before {
    top: 30px;
    left: 16px;
    font-size: clamp(3.3rem, 18vw, 6rem);
  }

  .page-home .home-plan-showcase__head {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .page-home .home-plan-showcase__title {
    font-size: clamp(2.2rem, 8.2vw, 3.35rem);
    line-height: 0.92;
  }

  .page-home .home-plan-showcase .float-carousel__shell {
    width: min(100% - 1rem, 1000px);
  }

  .page-home .home-plan-showcase .float-carousel__viewport {
    padding-inline: 2.4rem;
  }

  .page-home .home-plan-showcase .float-card {
    width: min(78vw, 360px);
    opacity: 1;
    transform: none;
  }

  .page-home .home-plan-showcase .float-card--active {
    transform: none;
  }

  .page-home .home-plan-showcase .float-carousel__btn {
    width: 2.35rem;
    height: 2.35rem;
    margin-top: -1.175rem;
  }

  .page-home .home-plan-showcase .float-carousel__btn-icon {
    font-size: 1.55rem;
  }

  .page-home .home-plan-showcase__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .page-home .home-plan-card__meta,
  .page-home .home-plan-card--tokyo .home-plan-card__meta,
  .page-home .home-plan-card--fuji .home-plan-card__meta,
  .page-home .home-plan-card--kanto .home-plan-card__meta,
  .page-home .home-plan-card--shonan .home-plan-card__meta,
  .page-home .home-plan-card--hokkaido .home-plan-card__meta,
  .page-home .home-plan-card--traditional .home-plan-card__meta {
    width: calc(100% - 1rem);
    margin: -2.2rem auto 0;
    transform: none;
  }

  .page-home .home-plan-card--tokyo,
  .page-home .home-plan-card--fuji,
  .page-home .home-plan-card--kanto,
  .page-home .home-plan-card--shonan,
  .page-home .home-plan-card--hokkaido,
  .page-home .home-plan-card--traditional {
    width: min(78vw, 360px);
    --plan-card-shift: 0px;
  }

  .page-home .home-plan-card__media,
  .page-home .home-plan-card--fuji .home-plan-card__media,
  .page-home .home-plan-card--kanto .home-plan-card__media,
  .page-home .home-plan-card--shonan .home-plan-card__media,
  .page-home .home-plan-card--hokkaido .home-plan-card__media,
  .page-home .home-plan-card--traditional .home-plan-card__media {
    aspect-ratio: 4 / 4.7;
  }

  .page-home .home-plan-card__title {
    font-size: clamp(1.45rem, 3.4vw, 2rem);
  }

  .page-home .home-plan-card__amount {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-home .home-costume__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-combos__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-end-tiles__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-end-tiles::before {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .page-home .home-end-tile,
  .page-home .home-end-tile:nth-child(2) {
    transform: none;
  }

  .page-home .home-end-tile:hover,
  .page-home .home-end-tile:nth-child(2):hover {
    transform: translateY(-3px);
  }

  .page-home .home-end-tile {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home .home-end-tile__title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .page-home .home-end-tile__rule {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .flow-page__visual-main {
    width: 88%;
    height: 74%;
  }

  .flow-page__visual-float {
    width: 58%;
    height: 44%;
    border-width: 6px;
  }

  .flow-steps::before {
    display: none;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .page-home .home-plan-showcase .float-carousel__viewport {
    padding-inline: 1.1rem;
  }

  .page-home .home-plan-showcase .float-card {
    width: min(86vw, 340px);
  }

  .page-home .home-plan-showcase .float-card--active {
    transform: none;
  }

  .page-home .home-plan-showcase__lead {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .page-home .home-plan-showcase__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 0.94;
  }

  .page-home .home-plan-card__body {
    min-height: 0;
  }

  .page-home .home-plan-card__title {
    font-size: clamp(1.34rem, 6vw, 1.72rem);
    line-height: 1.02;
  }

  .page-home .home-plan-card__amount {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }

  .page-home .home-plan-showcase__more {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
    gap: 0.7rem;
  }

  .page-home .home-plan-showcase__more::after {
    width: 3.1rem;
  }

  .page-home .home-end-tiles::before {
    font-size: clamp(2.8rem, 20vw, 4.4rem);
  }

  .page-home .home-end-tile {
    padding: 1.15rem 1rem 1.25rem;
  }

  .page-home .home-end-tile__title {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
    line-height: 0.94;
  }

  .page-home .home-end-tile__sub {
    max-width: 100%;
    font-size: 0.86rem;
  }

  .page-home .home-plan-card__meta,
  .page-home .home-plan-card--tokyo .home-plan-card__meta,
  .page-home .home-plan-card--fuji .home-plan-card__meta,
  .page-home .home-plan-card--kanto .home-plan-card__meta,
  .page-home .home-plan-card--shonan .home-plan-card__meta,
  .page-home .home-plan-card--hokkaido .home-plan-card__meta,
  .page-home .home-plan-card--traditional .home-plan-card__meta {
    width: calc(100% - 0.5rem);
    padding: 1rem 1rem 0.15rem;
  }
}

.page-home .home-about {
  padding-block: calc(var(--space-section) * 1.1);
  background: linear-gradient(180deg, var(--bg) 0%, rgb(248 245 240) 42%, var(--bg) 100%);
}

.page-home .home-about .about {
  gap: clamp(2rem, 4.5vw, 3.25rem);
}

.page-home .home-why {
  padding-top: calc(var(--space-section) * 0.95);
}

.page-home .home-why .section-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.page-home .home-why .why-item {
  padding-top: 1.2rem;
  border-top-width: 1px;
  border-top-color: rgb(31 31 28 / 0.82);
}

.page-home .home-cta {
  padding-bottom: calc(var(--space-section) * 1.05);
}

.page-home .home-cta .cta {
  padding: clamp(2rem, 4.8vw, 2.85rem);
  border: 1px solid rgb(228 224 219 / 0.95);
  box-shadow: 0 28px 70px rgb(42 38 34 / 0.07);
}

/* Home: CAMPAIGN & EVENT (card carousel, reference: dressesstudio-style) */
.campaign-event {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: #faf9f7;
  border-bottom: 1px solid var(--line);
}

.campaign-event__head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-title--lux {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
}

.campaign-event__stage.float-carousel--horizontal {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.campaign-event__shell {
  position: relative;
  width: 100vw;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2.75rem;
}

.campaign-event .float-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.float-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgb(35 34 32 / 0.2);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.float-carousel__dot:hover {
  background: rgb(35 34 32 / 0.4);
}

.float-carousel__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.float-carousel__dot--active {
  background: rgb(35 34 32 / 0.78);
  transform: scale(1.2);
}

.campaign-event .float-card {
  display: flex;
  flex-direction: column;
  width: min(78vw, 380px);
  max-width: 400px;
  background: #fff;
}

.campaign-card .float-card__media {
  aspect-ratio: 3 / 2;
}

.campaign-card__meta {
  padding: 1rem 1.1rem 1.2rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.campaign-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.campaign-tag {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  font-family: var(--font-label);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #b5a596;
}

.campaign-tag--accent {
  background: #3a3836;
  letter-spacing: 0.16em;
}

.campaign-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.campaign-card__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
}

[dir="rtl"] .campaign-card__meta {
  text-align: right;
}

[dir="rtl"] .section-title--lux {
  text-align: right;
}

/* Home: horizontal float carousel (see float-carousel.js) */
.floating-showcase {
  padding: clamp(3rem, 7vw, 5rem) 0 calc(var(--space-section) * 0.85);
  background: linear-gradient(180deg, #ebe7e0 0%, var(--bg) 38%);
  border-bottom: 1px solid var(--line);
}

.floating-showcase__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.floating-showcase__eyebrow {
  margin-bottom: 0.5rem;
}

.floating-showcase__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.page-home .floating-showcase__intro {
  max-width: min(38rem, 92vw);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.page-home .floating-showcase__title {
  letter-spacing: -0.025em;
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
}

.page-home .floating-showcase__lead {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}

.floating-showcase__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.floating-showcase__stage.float-carousel--horizontal {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.float-carousel__shell {
  position: relative;
  width: 100vw;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.float-carousel__viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-block: 0.25rem;
  /* Let the page scroll vertically; horizontal swipes go to carousel JS */
  touch-action: pan-y;
}

.float-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 94%);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 18px rgb(0 0 0 / 10%);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.float-carousel__btn:hover {
  background: #fff;
  box-shadow: 0 6px 22px rgb(0 0 0 / 12%);
}

.float-carousel__btn:active {
  transform: scale(0.96);
}

.float-carousel__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.float-carousel__btn--prev {
  left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.float-carousel__btn--next {
  right: max(0.75rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .float-carousel__btn--prev {
  left: auto;
  right: max(0.75rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .float-carousel__btn--next {
  right: auto;
  left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.float-carousel__btn-icon {
  font-family: var(--font-label);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -0.12em;
}

.float-carousel__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  width: max-content;
  will-change: transform;
}

.float-card {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 auto;
  width: min(94vw, 960px);
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  box-shadow:
    0 12px 40px rgb(0 0 0 / 12%),
    0 4px 12px rgb(0 0 0 / 6%);
  transition: box-shadow 0.35s ease;
}

.float-card--active {
  box-shadow:
    0 28px 64px rgb(31 31 28 / 18%),
    0 10px 24px rgb(0 0 0 / 10%);
}

.float-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.float-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #2a2825;
}

.float-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.float-card--active:hover .float-card__media img,
.float-card--active:focus-visible .float-card__media img {
  transform: scale(1.03);
}

.float-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(1.1rem, 3.8vw, 1.75rem);
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgb(12 12 11 / 55%) 72%,
    rgb(12 12 11 / 78%) 100%
  );
  pointer-events: none;
}

[dir="rtl"] .float-card__overlay {
  justify-content: flex-end;
  text-align: right;
}

.float-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 4vw, 2.05rem);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 28px rgb(0 0 0 / 48%);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .float-carousel__btn {
    width: 2.65rem;
    height: 2.65rem;
    margin-top: -1.325rem;
  }

  .float-carousel__btn-icon {
    font-size: 1.55rem;
  }

  .float-card {
    width: min(92vw, 960px);
  }
}

/* Elopement: wedding product anchors */
.product-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.product-section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.product-section__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.65rem;
}

.product-section__head .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-card {
  scroll-margin-top: 5.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.product-card:first-of-type {
  border-top: none;
  padding-top: 0;
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
}

.product-card .product-price {
  font-family: var(--font-label);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
}

.product-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-card li {
  margin-bottom: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-media {
    display: none;
  }

  .hero-noise {
    opacity: 0.06;
  }

  .hero.hero--video {
    background:
      linear-gradient(180deg, rgb(12 12 11 / 55%), rgb(12 12 11 / 45%)),
      #1a1a18 url("https://images.pexels.com/photos/5766212/pexels-photo-5766212.jpeg?auto=compress&cs=tinysrgb&w=1920")
        center / cover no-repeat;
  }
}

/* Reserve / booking page — tiered flow (session → options → date) */
.reserve-kanto-route {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.reserve-kanto-route[hidden] {
  display: none !important;
}

body[data-page="reserve"] .reserve-page {
  background: #f5f5f7;
}

.reserve-page {
  padding-bottom: var(--space-section);
}

.reserve-flow {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.35rem;
}

.reserve-flow__title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.reserve-flow__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.reserve-phone {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.reserve-page__container {
  width: min(100% - 2rem, 1080px);
  margin: 0 auto;
}

.reserve-form {
  padding: 0 0 1.75rem;
}

#reserve-summary {
  scroll-margin-top: 5rem;
}

#reserve-includes-panel {
  scroll-margin-top: 5rem;
}

/* Reserve checkout — tighter vertical rhythm (steps + stack gaps) */
.reserve-configurator .reserve-wizard-nav {
  margin: 0 0 0.85rem;
}

.reserve-configurator .reserve-os__stack--booking {
  gap: 0.7rem;
}

.reserve-configurator .reserve-apple-step {
  margin-bottom: 1.1rem;
}

.reserve-configurator #reserve-step-model {
  margin-bottom: 0.55rem;
}

.reserve-configurator .reserve-apple-step__head {
  margin-bottom: 0.75rem;
}

.reserve-configurator .reserve-win__links {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
}

body[data-page="reserve"] .page-hero {
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(1.75rem, 4vw, 2.25rem);
}

body[data-page="reserve"] .reserve-flow {
  margin-bottom: 1.1rem;
  padding: 1.25rem 1.2rem;
}

.reserve-os--with-sidebar {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

.reserve-os__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

@media (min-width: 1024px) {
  .reserve-os--with-sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  }

  .reserve-os__stack--booking {
    grid-column: 1;
  }

  .reserve-os__aside {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 1rem;
    align-self: start;
  }
}

.reserve-win__titlebar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: calc(-1 * clamp(1.25rem, 2.2vw, 2rem));
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f3f2ef, #e8e6e1);
}

.reserve-win__traffic {
  display: inline-flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.reserve-win__traffic span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c9c5be;
}

.reserve-win__traffic span:first-child {
  background: #e07a7a;
}

.reserve-win__traffic span:nth-child(2) {
  background: #d4b24a;
}

.reserve-win__traffic span:nth-child(3) {
  background: #7dbd7b;
}

.reserve-win__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reserve-win__hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.reserve-win__hint.is-hidden {
  display: none;
}

.reserve-pkg-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reserve-pkg {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reserve-pkg:has(input:checked),
.reserve-pkg.reserve-pkg--active {
  background: rgb(198 180 155 / 0.2);
  border-color: rgb(157 139 122 / 0.55);
}

.reserve-pkg:hover {
  border-color: rgb(157 139 122 / 0.35);
}

.reserve-pkg input {
  margin-top: 0.25rem;
}

.reserve-pkg input:focus-visible {
  outline: 2px solid rgb(116 90 72 / 0.65);
  outline-offset: 2px;
}

.reserve-win.card {
  box-shadow: 0 2px 0 rgb(0 0 0 / 0.04), 0 12px 40px rgb(0 0 0 / 0.06);
}

.reserve-win__links {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(0 0 0 / 0.06);
}

.reserve-inline-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgb(116 90 72);
  text-decoration: none;
  border-bottom: 1px solid rgb(157 139 122 / 0.45);
}

.reserve-inline-link:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.reserve-pkg__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  width: 100%;
}

.reserve-pkg__name {
  font-weight: 600;
}

.reserve-pkg__meta {
  font-size: 0.95rem;
  color: var(--text);
}

.reserve-pkg__tax {
  margin-left: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Reserve — Apple-style tiered configurator */
.reserve-wizard-nav {
  margin: 0 0 1.5rem;
}

.reserve-wizard-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.reserve-wizard-nav__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgb(110 110 115);
}

.reserve-wizard-nav__step.is-current {
  color: var(--text);
  font-weight: 600;
}

.reserve-wizard-nav__step.is-done {
  color: rgb(72 72 74);
}

.reserve-wizard-nav__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid rgb(210 210 215);
  background: #fff;
}

.reserve-wizard-nav__step.is-current .reserve-wizard-nav__num {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.reserve-wizard-nav__step.is-done .reserve-wizard-nav__num {
  background: rgb(116 90 72);
  color: #fff;
  border-color: rgb(116 90 72);
}

.reserve-wizard-nav__label {
  letter-spacing: -0.015em;
}

.reserve-apple-step {
  margin-bottom: 2.5rem;
}

.reserve-apple-step__head {
  margin-bottom: 1rem;
}

.reserve-apple-step__head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.reserve-apple-step__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.32rem, 2.4vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
}

.reserve-apple-step__sub {
  margin: 0;
  max-width: 40rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.reserve-apple-textlink {
  border: none;
  background: none;
  padding: 0.2rem 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0066cc;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reserve-apple-textlink:hover {
  color: rgb(116 90 72);
}

.reserve-apple-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgb(232 232 237);
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 2px 14px rgb(0 0 0 / 0.035);
}

.reserve-apple-panel + .reserve-apple-panel {
  margin-top: 1rem;
}

.reserve-apple-panel.reserve-calendar-wrap {
  margin-bottom: 0;
}

.reserve-apple-panel .reserve-calendar {
  border: none;
  border-radius: 14px;
  background: rgb(248 248 250);
  padding: 1rem 1rem 1.1rem;
}

.reserve-apple-panel--options .reserve-addon-legend {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgb(110 110 115);
}

.reserve-dress-cap-note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.reserve-model-hint {
  margin: 0 0 0.75rem;
}

.reserve-pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .reserve-pkg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reserve-pkg.reserve-pkg--tile {
  position: relative;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding: 1.05rem 1.15rem 1rem 3.05rem;
  border-radius: 18px;
  border: 1px solid rgb(210 210 215);
  background: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.035);
  min-height: 5.75rem;
}

.reserve-pkg--tile:hover {
  border-color: rgb(175 170 162);
  box-shadow: 0 4px 18px rgb(0 0 0 / 0.055);
}

.reserve-pkg--tile:has(input:checked),
.reserve-pkg--tile.reserve-pkg--active {
  border-color: rgb(116 90 72);
  box-shadow:
    0 0 0 3px rgb(116 90 72 / 0.2),
    0 8px 28px rgb(0 0 0 / 0.07);
  background: #fff;
}

.reserve-pkg--tile input {
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  margin: 0;
}

.reserve-pkg-grid .reserve-pkg__text {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.15rem;
}

.reserve-pkg-grid .reserve-pkg__name {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.reserve-pkg-grid .reserve-pkg__meta {
  font-size: 1rem;
  font-weight: 600;
}

.reserve-configurator .reserve-summary.card {
  border-radius: 18px;
  border: 1px solid rgb(232 232 237);
  box-shadow: 0 2px 14px rgb(0 0 0 / 0.04);
}

body[data-page="reserve"] .reserve-flow.card {
  border-radius: 14px;
  border: 1px solid rgb(232 232 237);
  background: #fff;
}

.reserve-form:not(.reserve-form--has-pkg) .reserve-apple-step--schedule {
  opacity: 0.48;
  transition: opacity 0.25s ease;
}

.reserve-form.reserve-form--has-pkg .reserve-apple-step--schedule {
  opacity: 1;
}

.reserve-submit-btn {
  border-radius: 980px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-weight: 600;
}

.reserve-checkout-actions {
  margin-top: 1rem;
}

.reserve-checkout-actions--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.reserve-checkout-actions--split .btn-primary {
  flex: 1 1 12rem;
  min-width: 10rem;
}

.reserve-checkout-back {
  margin: 1rem 0 0;
  text-align: center;
}

.reserve-field-error {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: #b42318;
}

.reserve-includes {
  margin-top: 0.85rem;
}

.reserve-includes__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.reserve-includes__list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: rgb(55 55 58);
  font-size: 0.9rem;
  line-height: 1.55;
}

.reserve-includes__list li {
  margin-bottom: 0.35rem;
}

.reserve-includes__list li:last-child {
  margin-bottom: 0;
}

.reserve-includes__note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

button.reserve-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.reserve-addon-fieldset {
  border: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.reserve-addon-legend {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0;
}

label.reserve-addon-legend {
  display: block;
  cursor: pointer;
}

.reserve-addon-select {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.15rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  line-height: 1.35;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.reserve-addon-select:focus-visible {
  outline: 2px solid rgb(116 90 72 / 0.55);
  outline-offset: 2px;
  border-color: rgb(157 139 122 / 0.55);
}

.reserve-seg {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
}

.reserve-seg--wrap {
  flex-wrap: wrap;
}

.reserve-seg__item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  background: var(--surface);
  min-width: 0;
}

.reserve-seg__item:has(input:checked) {
  border-color: rgb(157 139 122 / 0.85);
  background: rgb(198 180 155 / 0.2);
}

.reserve-seg__item:hover {
  border-color: rgb(157 139 122 / 0.4);
}

.reserve-seg__item input:focus-visible {
  outline: 2px solid rgb(116 90 72 / 0.55);
  outline-offset: 2px;
}

.reserve-seg__item input {
  margin: 0;
}

.reserve-addon-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reserve-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.88rem;
  cursor: pointer;
}

.reserve-check input {
  margin-top: 0.2rem;
  width: auto;
}

.reserve-contact-block {
  padding-top: 0.5rem;
}

.reserve-note {
  margin: 0 0 0.75rem;
}

.reserve-apple-step--schedule .reserve-note {
  margin-top: 1.25rem;
}

.reserve-booking__card {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.reserve-summary.card {
  box-shadow: 0 2px 0 rgb(0 0 0 / 0.04), 0 10px 32px rgb(0 0 0 / 0.05);
}

.reserve-summary.card h3.reserve-summary__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.reserve-summary__dl {
  margin: 0;
}

.reserve-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
}

.reserve-summary__row:last-child {
  border-bottom: none;
}

.reserve-summary__row dt {
  margin: 0;
  font-weight: 400;
  color: var(--muted);
}

.reserve-summary__row dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.reserve-summary__row--strong dd,
.reserve-summary__row--strong dt {
  font-weight: 600;
  color: var(--text);
}

.reserve-summary__row--total {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.reserve-summary__row--total dd {
  font-size: 1.15rem;
  font-weight: 700;
}

#reserve-success-msg:not(.visually-hidden) {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 2px;
  background: rgba(157, 139, 122, 0.14);
  color: inherit;
}

.reserve-fieldset {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.reserve-legend {
  font-weight: 600;
  margin-bottom: 0.65rem;
  padding: 0;
}

.reserve-plan-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.reserve-plan-option:has(input:checked) {
  background: rgb(198 180 155 / 0.18);
  border-color: rgb(157 139 122 / 0.45);
}

.reserve-plan-option input {
  margin-top: 0.2rem;
}

.reserve-calendar-wrap {
  margin-bottom: 0.85rem;
}

.reserve-calendar__heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.reserve-calendar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem 1rem 1.15rem;
  margin-bottom: 1rem;
}

.reserve-calendar__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.reserve-cal-nav {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.reserve-calendar__month-label {
  font-weight: 600;
  font-size: 0.98rem;
}

.reserve-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.reserve-calendar__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.reserve-calendar__legend-item .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4a7ab7;
}

.reserve-calendar__legend-item .tri {
  width: 0;
  height: 0;
  border-left: 0.28rem solid transparent;
  border-right: 0.28rem solid transparent;
  border-bottom: 0.5rem solid #c45c5c;
}

.reserve-calendar__legend-item .x {
  font-size: 0.85rem;
  line-height: 1;
  color: rgb(120 118 115);
}

.reserve-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.reserve-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.reserve-calendar__cell--pad {
  min-height: 2.25rem;
  visibility: hidden;
}

.reserve-calendar__day {
  min-height: 2.35rem;
  border: 1px solid rgb(230 228 224);
  border-radius: 2px;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  position: relative;
}

.reserve-calendar__day--sat {
  background: rgb(232 242 252);
}

.reserve-calendar__day--sun {
  background: rgb(255 236 236);
}

.reserve-calendar__day--open::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #4a7ab7;
}

.reserve-calendar__day--few::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.22rem solid transparent;
  border-right: 0.22rem solid transparent;
  border-bottom: 0.38rem solid #c45c5c;
}

.reserve-calendar__day--closed {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

.reserve-calendar__day.is-selected {
  outline: 2px solid rgb(198 180 155);
  outline-offset: 1px;
  background: rgb(255 252 245);
}

.row-field {
  margin-bottom: 1rem;
}

.row-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.row-field input,
.row-field select {
  width: 100%;
  max-width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.reserve-note {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1rem;
}

/* Campaign index — horizontal rows (image | copy), listing-style */
.campaign-index {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--surface);
}

.campaign-index__container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.campaign-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.campaign-index-item {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.campaign-index-item:hover {
  background: rgb(250 248 245 / 0.65);
}

.campaign-index-item:focus-visible {
  outline: 2px solid #a68f6f;
  outline-offset: -2px;
}

.campaign-index-item__media {
  position: relative;
  min-height: 11.5rem;
  background: #e8e4de;
  overflow: hidden;
}

.campaign-index-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-index-item:hover .campaign-index-item__media img {
  transform: scale(1.03);
}

.campaign-index-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.25rem, 3vw, 1.85rem) clamp(1.1rem, 3vw, 2.25rem);
  gap: 0.55rem;
}

.campaign-index-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.campaign-index-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.campaign-index-item__excerpt {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #4a4743;
}

.campaign-index-item__meta {
  margin: 0.15rem 0 0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--muted);
}

.campaign-index-item__cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6a5a;
  border-bottom: 1px solid rgb(122 106 90 / 0.35);
  padding-bottom: 0.12rem;
}

.campaign-index-item:hover .campaign-index-item__cta {
  color: #5c4f42;
  border-bottom-color: rgb(92 79 66 / 0.55);
}

.campaign-index-item__cta-arrow {
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.campaign-index-item:hover .campaign-index-item__cta-arrow {
  transform: translateX(3px);
}

[dir="rtl"] .campaign-index-item {
  direction: rtl;
}

[dir="rtl"] .campaign-index-item__body {
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 800px) {
  .campaign-index-item {
    grid-template-columns: 1fr;
  }

  .campaign-index-item__media {
    min-height: 12rem;
    max-height: 14rem;
  }
}

/* Campaign page: OTHER CONTENTS + Reservation strip (reference layout) */
.page-campaign {
  padding-bottom: max(6.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
}

.campaign-other-contents {
  background: #eceae6;
  padding: 2.75rem 0 2.5rem;
}

.campaign-other-contents__label {
  margin: 0 auto 1.75rem;
  max-width: min(72rem, 100% - 2rem);
  padding: 0 1rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
  color: #1a1918;
}

.campaign-other-contents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  min-height: min(42vh, 22rem);
}

.campaign-other-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 16rem;
  padding: 1.35rem 1.15rem 1.5rem;
  text-decoration: none;
  color: #fff;
  background-color: #2a2825;
  background-image: var(--campaign-card-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.campaign-other-card:hover {
  filter: brightness(1.05);
}

.campaign-other-card:focus-visible {
  outline: 2px solid #c9a87c;
  outline-offset: -2px;
}

.campaign-other-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(0 0 0 / 0.18) 0%,
    rgb(0 0 0 / 0.52) 55%,
    rgb(0 0 0 / 0.62) 100%
  );
  pointer-events: none;
}

.campaign-other-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.campaign-other-card__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.campaign-other-card__title {
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
  flex-shrink: 0;
}

.campaign-other-card__title--costume {
  letter-spacing: 0.22em;
}

.campaign-other-card__deco {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.campaign-other-card__deco-line {
  flex: 1;
  height: 1px;
  background: rgb(255 255 255 / 0.88);
  position: relative;
  margin-right: 0.35rem;
}

.campaign-other-card__deco-line::after {
  content: "";
  position: absolute;
  right: -0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.35);
}

.campaign-other-card__sub {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  opacity: 0.95;
}

[dir="rtl"] .campaign-other-card__inner {
  text-align: right;
  align-items: flex-end;
}

[dir="rtl"] .campaign-other-card__deco-line {
  margin-right: 0;
  margin-left: 0.35rem;
}

[dir="rtl"] .campaign-other-card__deco-line::after {
  right: auto;
  left: -0.35rem;
}

@media (max-width: 900px) {
  .campaign-other-contents__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .campaign-other-card {
    min-height: 13.5rem;
  }
}

.campaign-reserve-banner {
  background: #f4f2ee;
  padding: 2.75rem 0 3rem;
  border-top: 1px solid rgb(0 0 0 / 0.06);
}

.campaign-reserve-banner__inner {
  text-align: center;
}

.campaign-reserve-banner__display {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #a68f6f;
  line-height: 1.1;
}

.campaign-reserve-banner__display-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.campaign-reserve-banner__display-link:hover {
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.campaign-reserve-banner__sub {
  margin: 0 0 2rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #3a3836;
}

.campaign-reserve-banner__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

[dir="rtl"] .campaign-reserve-banner__cols {
  text-align: right;
}

.campaign-reserve-banner__col-label {
  margin: 0 0 1rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2a2825;
}

.campaign-reserve-banner__btns {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.campaign-reserve-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 2px;
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
}

.campaign-reserve-btn:hover {
  filter: brightness(1.06);
}

.campaign-reserve-btn--primary {
  background: #9d8b7a;
}

.campaign-reserve-btn--whatsapp {
  background: #b5a08c;
  color: #fff;
}

.campaign-reserve-btn--wechat {
  background: #1f9d5c;
  color: #fff;
}

.campaign-reserve-btn--x {
  background: #0f0f0f;
  color: #fff;
}

.campaign-reserve-btn--dark {
  background: #2e2c2a;
}

.campaign-reserve-banner__divider {
  width: 1px;
  min-height: 8rem;
  background: rgb(0 0 0 / 0.12);
  align-self: stretch;
}

.campaign-reserve-banner__col--phone .campaign-reserve-banner__col-label {
  margin-bottom: 0.65rem;
}

.campaign-reserve-banner__phone {
  margin: 0 0 0.5rem;
  font-family: var(--font-label);
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2a2825;
}

.campaign-reserve-banner__hours {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.75rem;
  line-height: 1.55;
  color: #5c5854;
}

@media (max-width: 720px) {
  .campaign-reserve-banner__cols {
    grid-template-columns: 1fr;
  }

  .campaign-reserve-banner__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }
}

/* Portfolio / gallery — listing layout (reference: GALLERY title, flush filter bar, sort row, grid) */
.page-portfolio {
  padding-bottom: max(6.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
}

.gallery-page-head {
  background: #e5e2dd;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
}

.gallery-page-head__inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.gallery-page-head__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-label);
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1918;
}

.gallery-page-head__sub {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #5a5652;
}

.gallery-filter-outer {
  width: 100%;
  background: #dcd8d2;
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
}

.gallery-filter-bar {
  display: flex;
  width: 100%;
  max-width: min(100%, var(--max-width));
  margin: 0 auto;
  flex-wrap: nowrap;
}

.gallery-filter-bar__btn {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0.85rem 0.35rem;
  border: none;
  border-right: 1px solid rgb(0 0 0 / 0.08);
  font-family: var(--font-label);
  font-size: clamp(0.5rem, 1.35vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #9c9893;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.gallery-filter-bar__btn:last-child {
  border-right: none;
}

.gallery-filter-bar__btn:hover {
  background: #8a8680;
}

.gallery-filter-bar__btn.is-active {
  background: #1a1918;
  color: #fff;
}

.gallery-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1rem 1.25rem;
  background: var(--bg);
}

.gallery-sort__btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #b5b0a8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gallery-sort__btn:hover {
  color: #6a6560;
}

.gallery-sort__btn.is-active {
  font-weight: 600;
  color: #1a1918;
}

.gallery-sort__sep {
  color: #d0ccc4;
  font-size: 0.75rem;
  user-select: none;
}

.gallery-page-mosaic {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--bg);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.gallery-page-tile {
  margin: 0;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e4df;
  scroll-margin-top: 5.5rem;
  cursor: pointer;
}

.gallery-page-tile:focus {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.gallery-page-tile:focus:not(:focus-visible) {
  outline: none;
}

.gallery-page-tile[hidden] {
  display: none !important;
}

.gallery-page-tile__link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-page-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-page-more {
  margin-top: 1.75rem;
  text-align: center;
}

.gallery-page-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.88rem 1.85rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.gallery-page-tile--truncated {
  display: none !important;
}

.gallery-page-more__btn:hover {
  background: var(--text);
  color: #fff;
}

/* Gallery lightbox */
.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0)
    env(safe-area-inset-left, 0);
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.92);
  z-index: 0;
}

.gallery-lightbox__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(3.25rem, 10vw, 4.5rem) clamp(2.5rem, 8vw, 4rem);
  box-sizing: border-box;
}

.gallery-lightbox__stage--zoomed {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
  justify-content: flex-start;
}

.gallery-lightbox__img {
  display: block;
  max-width: min(96vw, 100%);
  max-height: min(88dvh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-lightbox__btn {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f1ec;
  cursor: pointer;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.gallery-lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-lightbox__btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.gallery-lightbox__svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.gallery-lightbox__close {
  top: calc(0.85rem + env(safe-area-inset-top, 0));
  right: calc(0.85rem + env(safe-area-inset-right, 0));
}

.gallery-lightbox__prev {
  left: calc(0.65rem + env(safe-area-inset-left, 0));
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__next {
  right: calc(0.65rem + env(safe-area-inset-right, 0));
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__fs {
  top: calc(0.85rem + env(safe-area-inset-top, 0));
  left: calc(0.85rem + env(safe-area-inset-left, 0));
}

.gallery-lightbox__zoom-in {
  top: calc(4.25rem + env(safe-area-inset-top, 0));
  left: calc(0.85rem + env(safe-area-inset-left, 0));
}

.gallery-lightbox__zoom-out {
  top: calc(6.65rem + env(safe-area-inset-top, 0));
  left: calc(0.85rem + env(safe-area-inset-left, 0));
}

.gallery-lightbox__counter {
  position: absolute;
  z-index: 2;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label, system-ui, sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.75);
  pointer-events: none;
}

@media (max-width: 720px) {
  .gallery-lightbox__prev,
  .gallery-lightbox__next {
    width: 2.35rem;
    height: 2.35rem;
  }

  .gallery-lightbox__prev {
    left: 0.35rem;
  }

  .gallery-lightbox__next {
    right: 0.35rem;
  }

  .gallery-lightbox__img {
    max-height: min(82dvh, 100%);
  }
}

@media (max-width: 960px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gallery-filter-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .gallery-filter-bar__btn {
    flex: 1 0 auto;
    min-width: 5.5rem;
    font-size: 0.52rem;
    padding: 0.75rem 0.45rem;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .gallery-page-tile {
    aspect-ratio: 1 / 1;
  }
}

/* Costume page (reference: editorial kicker, category rail, catalogue grid) */
.page-costume {
  padding-bottom: max(6.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
}

.costume-hero {
  background: linear-gradient(165deg, #f4f1ec 0%, #ebe6df 48%, #e8e3db 100%);
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.costume-hero__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.costume-hero__kicker {
  font-family: "Playfair Display", "Times New Roman", Times, serif;
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgb(90 82 74);
  margin: 0 0 1.25rem;
}

.costume-hero__h1 {
  margin: 0 0 1.35rem;
  font-family: "Cormorant Garamond", "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: clamp(2.35rem, 6vw, 3.35rem);
  line-height: 1.12;
  color: #2a2622;
}

.costume-hero__h1-main {
  display: block;
}

.costume-hero__h1-sub {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgb(72 66 60);
}

.costume-hero__h1-sub span {
  display: block;
}

.costume-hero__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.9vw, 1.08rem);
  line-height: 1.65;
  color: rgb(78 72 66);
  font-family: "DM Sans", system-ui, sans-serif;
}

.costume-band {
  background: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.costume-band__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.costume-band__intro {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgb(68 62 56);
}

.costume-band__fair {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.costume-band__fair a {
  color: #2a2622;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.costume-band__fair a:hover {
  color: #c45c5c;
}

.costume-catalog {
  padding: clamp(2rem, 5vw, 3rem) 0 2.5rem;
  background: #faf9f7;
}

.costume-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(224 218 208);
}

.costume-cat__btn {
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgb(200 192 182);
  border-radius: 2px;
  background: #fff;
  color: rgb(72 66 60);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.costume-cat__btn:hover {
  border-color: rgb(160 150 138);
}

.costume-cat__btn--active {
  background: #2a2622;
  color: #fff;
  border-color: #2a2622;
}

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

.costume-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 22px rgb(0 0 0 / 5%);
}

.costume-card__media {
  margin: 0;
  aspect-ratio: 3 / 4;
  background: #ece8e2;
}

.costume-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.costume-card__meta {
  padding: 0.65rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.costume-card__code {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.costume-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #2a2622;
  letter-spacing: 0.02em;
}

.costume-pager {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.costume-page-events {
  padding: 2.5rem 0 2.25rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.costume-events__head {
  margin: 0 0 1.35rem;
  text-align: center;
  font-family: "Playfair Display", "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  color: #2a2622;
}

.costume-page-events__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .costume-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .costume-page-events__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .costume-grid {
    grid-template-columns: 1fr;
  }
}

button.hero-circle,
a.hero-circle {
  border: none;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

/* `color: inherit` on anchors can override --sand / --dark; keep label white */
a.hero-circle.hero-circle--sand,
button.hero-circle.hero-circle--sand,
a.hero-circle.hero-circle--dark,
button.hero-circle.hero-circle--dark {
  color: #fff;
}

button.hero-circle:focus-visible,
a.hero-circle:focus-visible {
  outline: 2px solid rgb(255 255 255 / 0.85);
  outline-offset: 3px;
}

/* AI consult drawer (opened from floating sand circle) */
body.ai-consult-open {
  overflow: hidden;
}

.ai-consult__backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgb(18 16 14 / 0.42);
  backdrop-filter: blur(4px);
}

.ai-consult__panel {
  position: fixed;
  z-index: 230;
  top: 0;
  right: 0;
  width: min(26rem, 100vw - 1rem);
  height: 100%;
  max-height: 100dvh;
  background: #faf8f5;
  box-shadow: -12px 0 40px rgb(0 0 0 / 0.18);
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem 1.1rem;
  padding-bottom: max(1.1rem, env(safe-area-inset-bottom));
}

[dir="rtl"] .ai-consult__panel {
  right: auto;
  left: 0;
  box-shadow: 12px 0 40px rgb(0 0 0 / 0.18);
}

.ai-consult__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.ai-consult__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #2a2622;
}

.ai-consult__close {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.06);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #3a3632;
}

.ai-consult__close:hover {
  background: rgb(0 0 0 / 0.1);
}

.ai-consult__messages {
  flex: 1 1 auto;
  min-height: 8rem;
  overflow-y: auto;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ai-consult__row {
  max-width: 92%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #2f2b28;
}

.ai-consult__row--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 0.07);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.05);
}

.ai-consult__row--user {
  align-self: flex-end;
  background: #3a3836;
  color: #fff;
}

.ai-consult__row--thinking {
  opacity: 0.75;
  font-style: italic;
}

.ai-consult__disclaimer {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.ai-consult__wa {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2a7a4b;
}

.ai-consult__wa:hover {
  text-decoration: underline;
}

.ai-consult__form {
  display: flex;
  gap: 0.45rem;
  margin-top: auto;
}

.ai-consult__input {
  flex: 1 1 auto;
  min-width: 0;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.ai-consult__submit {
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: #3a3836;
  color: #fff;
  cursor: pointer;
}

.ai-consult__submit:hover {
  filter: brightness(1.06);
}

@media (max-width: 540px) {
  .ai-consult__panel {
    width: 100%;
    max-width: none;
  }
}

/* AI chat full page (ai-chat.html) */
.page-ai-chat .ai-chat-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3rem);
  min-height: calc(100dvh - 5.5rem);
}

.page-ai-chat {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.ai-chat-layout {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  max-width: min(40rem, 100%);
}

.ai-chat-shell.ai-consult--page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: 0 20px 50px rgb(35 34 32 / 0.06);
  min-height: min(70dvh, 36rem);
}

.ai-chat-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  min-height: 2.5rem;
}

.ai-chat-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  margin: 0;
  border-radius: 6px;
}

.ai-chat-back:hover {
  color: var(--text);
}

.ai-chat-page-title {
  margin: 0;
  text-align: center;
  padding: 0 4.5rem;
}

.ai-consult--page .ai-consult__messages {
  flex: 1 1 auto;
  min-height: clamp(14rem, 38vh, 22rem);
  max-height: none;
}

.ai-consult--page .ai-consult__form {
  margin-top: 0.5rem;
}

[dir="rtl"] .ai-chat-back {
  left: auto;
  right: 0;
}

@supports not selector(:has(*)) {
  .reserve-plan-option input:checked + span {
    font-weight: 600;
  }
}

/* ==========================================================================
   Editorial split-layout sections (home — inspired by atelier/studio layouts)
   Alternating image/content halves with an overlapping secondary image,
   serif two-line titles, and a "LABEL — line — dot" pill link.
   ========================================================================== */

.editorial {
  position: relative;
  padding: clamp(96px, 12vw, 168px) 0;
  background: #f8f5f1;
  color: #2e231c;
  overflow: hidden;
}

.editorial + .editorial {
  padding-top: clamp(72px, 10vw, 140px);
}

.editorial--cream {
  background: #f8f5f1;
}

.editorial--ivory {
  background: #f2ede6;
}

.editorial--bone {
  background: #eee8df;
}

.editorial__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 720px)
    clamp(32px, 6vw, 96px)
    minmax(0, 520px)
    clamp(24px, 5vw, 80px);
  align-items: center;
  min-height: clamp(520px, 60vw, 760px);
}

.editorial__primary {
  position: relative;
  grid-column: 1 / 3;
  grid-row: 1;
  justify-self: stretch;
  margin: 0;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eadfd3;
  z-index: 1;
}

.editorial__primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.editorial:hover .editorial__primary img {
  transform: scale(1.04);
}

.editorial__content {
  grid-column: 4 / 5;
  grid-row: 1;
  padding: clamp(16px, 4vw, 56px) 0;
  max-width: 520px;
  position: relative;
  z-index: 4;
}

.editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a7460;
  margin: 0 0 clamp(18px, 2vw, 26px);
}

.editorial__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.editorial__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN",
    "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #2a1e15;
  margin: 0 0 clamp(24px, 3vw, 36px);
}

.editorial__title > span {
  display: block;
}

.editorial__title > span + span {
  padding-left: clamp(14px, 1.6vw, 24px);
}

.editorial__body {
  font-family: "Noto Sans JP", "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.08em;
  color: #5b4a3c;
  margin: 0 0 clamp(40px, 5vw, 72px);
  max-width: 420px;
}

.editorial__cta {
  display: inline-grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  width: clamp(240px, 26vw, 360px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(46, 35, 28, 0.18);
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: #2a1e15;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.editorial__cta:hover {
  color: #8a6b4b;
  border-bottom-color: rgba(138, 107, 75, 0.55);
}

.editorial__cta-label {
  text-transform: uppercase;
}

.editorial__cta-line {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(46, 35, 28, 0.35);
  transform-origin: left center;
  transition: background 0.3s ease;
}

.editorial__cta:hover .editorial__cta-line {
  background: rgba(138, 107, 75, 0.6);
}

.editorial__cta-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a1e15;
  transition: background 0.3s ease, transform 0.3s ease;
}

.editorial__cta:hover .editorial__cta-dot {
  background: #8a6b4b;
  transform: translateX(4px);
}

.editorial__secondary {
  position: absolute;
  left: 38%;
  bottom: clamp(-80px, -6vw, -40px);
  width: clamp(220px, 26vw, 360px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: #e5dcd0;
  box-shadow: 0 30px 60px -24px rgba(42, 30, 21, 0.35);
  z-index: 2;
}

.editorial__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reverse: image on the right, copy on the left */
.editorial--reverse .editorial__inner {
  grid-template-columns:
    clamp(24px, 5vw, 80px)
    minmax(0, 520px)
    clamp(32px, 6vw, 96px)
    minmax(0, 720px)
    minmax(0, 1fr);
}

.editorial--reverse .editorial__primary {
  grid-column: 4 / 6;
  justify-self: stretch;
  margin-left: auto;
}

.editorial--reverse .editorial__content {
  grid-column: 2 / 3;
  justify-self: end;
}

.editorial--reverse .editorial__secondary {
  left: auto;
  right: 38%;
}

/* A tall-portrait variant for costume / single-figure shots */
.editorial--portrait .editorial__primary {
  aspect-ratio: 4 / 5;
  max-width: 720px;
}

/* Home: split costume / about into distinct editorial rhythms */
#costume,
#about {
  position: relative;
  overflow: hidden;
}

#costume::before,
#about::before {
  position: absolute;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgb(120 101 80 / 0.07);
  pointer-events: none;
  z-index: 0;
}

#costume::before {
  content: "Wardrobe";
  top: clamp(20px, 4vw, 44px);
  right: clamp(10px, 4vw, 48px);
  font-size: clamp(5rem, 13vw, 10rem);
}

#about::before {
  content: "About";
  top: clamp(12px, 3vw, 28px);
  left: clamp(12px, 5vw, 56px);
  font-size: clamp(5.2rem, 14vw, 11rem);
}

#costume .editorial__inner {
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 640px)
    clamp(28px, 4vw, 64px)
    minmax(360px, 500px)
    minmax(0, 1fr);
  align-items: start;
  min-height: clamp(620px, 64vw, 820px);
}

#costume .editorial__primary {
  grid-column: 1 / 4;
  max-width: 720px;
  aspect-ratio: 4 / 5.25;
}

#costume .editorial__content {
  grid-column: 4 / 6;
  max-width: 472px;
  padding: clamp(72px, 7vw, 132px) clamp(8px, 1.6vw, 18px) 0 0;
  transform: none;
}

#costume .editorial__eyebrow {
  margin-bottom: clamp(16px, 2vw, 22px);
}

#costume .editorial__title {
  max-width: 8.4em;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

#costume .editorial__title > span + span {
  padding-left: clamp(26px, 4vw, 64px);
}

#costume .editorial__body {
  max-width: 25rem;
  font-size: 0.94rem;
  line-height: 1.88;
  letter-spacing: 0.06em;
  margin-bottom: clamp(26px, 4vw, 42px);
}

#costume .editorial__cta {
  width: clamp(220px, 22vw, 300px);
}

#costume .editorial__secondary {
  left: auto;
  right: clamp(18px, 6vw, 74px);
  bottom: clamp(-54px, -3vw, -18px);
  width: clamp(180px, 18vw, 250px);
  aspect-ratio: 3 / 4.1;
}

#about .editorial__inner {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 650px)
    clamp(28px, 5vw, 84px)
    minmax(0, 560px)
    minmax(0, 0.75fr);
  align-items: center;
}

#about .editorial__primary {
  grid-column: 1 / 3;
  max-width: 740px;
  aspect-ratio: 4 / 4.9;
}

#about .editorial__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.8fr);
  column-gap: clamp(1.2rem, 3vw, 3rem);
  row-gap: 0.85rem;
  max-width: 700px;
  padding-block: clamp(24px, 4vw, 52px);
}

#about .editorial__eyebrow {
  grid-column: 1 / 3;
  margin-bottom: 0.2rem;
}

#about .editorial__title {
  grid-column: 1 / 2;
  max-width: 8.2em;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

#about .editorial__title > span + span {
  padding-left: 0;
}

#about .editorial__body {
  grid-column: 2 / 3;
  align-self: end;
  max-width: 16rem;
  margin: 0;
  padding-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.82;
  letter-spacing: 0.07em;
}

#about .editorial__cta {
  grid-column: 2 / 3;
  width: auto;
  min-width: 0;
  gap: clamp(14px, 2vw, 26px);
  margin-top: 0.2rem;
}

#about .editorial__secondary {
  left: clamp(26px, 10vw, 180px);
  bottom: clamp(-50px, -3.2vw, -12px);
  width: clamp(170px, 18vw, 250px);
  aspect-ratio: 4 / 5.2;
}

#campaign-event {
  border-top: 1px solid rgb(42 38 32 / 0.07);
}

#campaign-event::before {
  content: "Notice";
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 5vw, 72px);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4.8rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: rgb(120 101 80 / 0.075);
  pointer-events: none;
  z-index: 0;
}

#campaign-event .editorial__inner {
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 560px)
    clamp(28px, 4vw, 64px)
    minmax(0, 660px)
    minmax(0, 0.9fr);
  align-items: center;
  min-height: clamp(580px, 58vw, 760px);
}

#campaign-event .editorial__primary {
  grid-column: 4 / 6;
  max-width: 760px;
  aspect-ratio: 4 / 4.85;
  margin-left: auto;
}

#campaign-event .editorial__content {
  grid-column: 2 / 3;
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 470px;
  padding: clamp(18px, 3vw, 42px) clamp(10px, 1.5vw, 18px) clamp(24px, 3vw, 36px) 0;
}

#campaign-event .editorial__eyebrow {
  margin-bottom: clamp(14px, 2vw, 20px);
  color: #7f6a58;
}

#campaign-event .editorial__title {
  max-width: 8em;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

#campaign-event .editorial__title > span + span {
  padding-left: clamp(32px, 5vw, 70px);
}

#campaign-event .editorial__body {
  max-width: 19rem;
  margin: 0 0 clamp(24px, 3.2vw, 36px);
  padding-top: 0.85rem;
  border-top: 1px solid rgb(42 30 21 / 0.12);
  font-size: 0.88rem;
  line-height: 1.84;
  letter-spacing: 0.07em;
}

#campaign-event .editorial__cta {
  width: clamp(210px, 22vw, 290px);
  gap: clamp(14px, 2vw, 22px);
}

#campaign-event .editorial__secondary {
  left: clamp(18px, 7vw, 120px);
  right: auto;
  bottom: clamp(-24px, -1.4vw, 4px);
  width: clamp(190px, 19vw, 250px);
  aspect-ratio: 4 / 2.9;
}

/* Give sections visual rhythm when stacked */
.editorial + .editorial--ivory,
.editorial--ivory + .editorial {
  margin-top: 0;
}

@media (max-width: 960px) {
  .editorial {
    padding: 82px 0 104px;
  }

  #costume::before,
  #about::before,
  #campaign-event::before {
    font-size: clamp(3.8rem, 16vw, 6.6rem);
  }

  .editorial__inner,
  .editorial--reverse .editorial__inner {
    grid-template-columns: 1fr;
    row-gap: 0;
    min-height: 0;
  }
  .editorial__primary,
  .editorial--reverse .editorial__primary {
    grid-column: 1;
    grid-row: 1;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    aspect-ratio: 4 / 4.8;
  }
  .editorial__content,
  .editorial--reverse .editorial__content {
    grid-column: 1;
    grid-row: 2;
    padding: 72px 24px 0;
    max-width: 560px;
    margin: 0 auto;
    justify-self: stretch;
    position: relative;
    z-index: 3;
  }

  #costume .editorial__content,
  #about .editorial__content {
    display: block;
    max-width: 560px;
    transform: none;
    padding-top: 64px;
  }

  #campaign-event .editorial__content {
    display: block;
    max-width: 560px;
    padding-top: 64px;
  }

  #costume .editorial__title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 0.96;
  }

  #about .editorial__title {
    font-size: clamp(2.3rem, 7vw, 3.8rem);
    line-height: 0.9;
    margin-bottom: 1rem;
  }

  #about .editorial__body {
    max-width: 24rem;
    padding-top: 0;
  }

  #costume .editorial__body,
  #campaign-event .editorial__body {
    max-width: 26rem;
  }

  #costume .editorial__cta,
  #about .editorial__cta,
  #campaign-event .editorial__cta {
    width: min(100%, 19rem);
  }

  #campaign-event .editorial__title {
    font-size: clamp(2.1rem, 6.2vw, 3.2rem);
    line-height: 0.94;
  }

  #campaign-event .editorial__body {
    max-width: 24rem;
    padding-top: 0;
  }

  .editorial__secondary,
  .editorial--reverse .editorial__secondary {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(62%, 260px);
    max-width: 260px;
    margin: 18px auto 0;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    transform: none;
    z-index: 1;
  }
}

@media (max-width: 640px) {
  .editorial__content,
  .editorial--reverse .editorial__content {
    padding: 40px 18px 0;
  }

  #costume::before,
  #about::before,
  #campaign-event::before {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  #costume .editorial__content,
  #about .editorial__content {
    padding-top: 40px;
  }

  #campaign-event .editorial__content {
    padding-top: 40px;
  }

  #costume .editorial__title,
  #about .editorial__title {
    font-size: clamp(1.82rem, 10vw, 2.55rem);
    line-height: 0.96;
  }

  #campaign-event .editorial__title {
    font-size: clamp(1.82rem, 9vw, 2.4rem);
    line-height: 0.98;
  }

  #costume .editorial__body,
  #about .editorial__body {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.72;
  }

  #campaign-event .editorial__body {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.72;
  }

  #costume .editorial__cta,
  #about .editorial__cta,
  #campaign-event .editorial__cta {
    width: 100%;
    max-width: 17rem;
    gap: 0.9rem;
  }

  .editorial__secondary,
  .editorial--reverse .editorial__secondary {
    width: min(54%, 180px);
    max-width: 180px;
    margin-top: 14px;
  }
}

/* Tablet / small-laptop: force editorial blocks into a non-overlap flow */
@media (max-width: 1200px) and (min-width: 961px) {
  .editorial {
    padding: 88px 0 102px;
  }

  #costume::before,
  #about::before,
  #campaign-event::before {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

  .editorial__inner,
  .editorial--reverse .editorial__inner {
    grid-template-columns: 1fr;
    row-gap: 0;
    min-height: 0;
  }

  .editorial__primary,
  .editorial--reverse .editorial__primary {
    grid-column: 1;
    grid-row: 1;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    aspect-ratio: 4 / 5;
  }

  .editorial__content,
  .editorial--reverse .editorial__content {
    grid-column: 1;
    grid-row: 2;
    padding: 56px 32px 0;
    max-width: 760px;
    margin: 0 auto;
    justify-self: stretch;
    background: transparent;
    position: relative;
    z-index: 3;
  }

  #costume .editorial__content,
  #about .editorial__content {
    display: block;
    max-width: 760px;
    transform: none;
  }

  #campaign-event .editorial__content {
    display: block;
    max-width: 760px;
  }

  #costume .editorial__content,
  #campaign-event .editorial__content {
    padding-top: 52px;
  }

  #costume .editorial__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 0.96;
  }

  #about .editorial__title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 0.88;
    margin-bottom: 1rem;
  }

  #about .editorial__body {
    max-width: 28rem;
    padding-top: 0;
  }

  #campaign-event .editorial__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 0.92;
  }

  #campaign-event .editorial__body {
    max-width: 28rem;
    padding-top: 0;
  }

  .editorial__secondary,
  .editorial--reverse .editorial__secondary {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(52%, 260px);
    max-width: 260px;
    margin: 16px auto 0;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    transform: none;
    z-index: 1;
  }
}

/* ==========================================================================
   Home editorial intro — under the video hero
   ========================================================================== */

.home-intro {
  background: #f8f5f1;
  padding: clamp(96px, 12vw, 160px) 0 clamp(24px, 4vw, 48px);
  color: #2a1e15;
  text-align: center;
}

.home-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.home-intro__mark {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: #8a7460;
  padding-bottom: 16px;
  margin-bottom: 22px;
  position: relative;
}

.home-intro__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: #8a7460;
}

.home-intro__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 2;
  letter-spacing: 0.12em;
  color: #2a1e15;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.home-intro__body {
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #5b4a3c;
  margin: 0;
}

/* ==========================================================================
   Home lineup row — horizontal "Why / Highlights" numbered strip
   Kept minimal and cream to match the editorial rhythm.
   ========================================================================== */

.home-lineup {
  position: relative;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.38) 0, rgb(255 255 255 / 0.38) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, #f2ede6 0%, #ece5db 100%);
  background-size: 33.333% 100%, 100% 100%;
  padding: clamp(88px, 10vw, 148px) 0;
  border-top: 1px solid rgba(42, 30, 21, 0.06);
  border-bottom: 1px solid rgba(42, 30, 21, 0.06);
}

.home-lineup::before {
  content: "Why";
  position: absolute;
  top: clamp(18px, 2.6vw, 28px);
  left: clamp(18px, 5vw, 64px);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4.5rem, 13vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: rgb(120 101 80 / 0.08);
  pointer-events: none;
}

.home-lineup__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 56px);
  position: relative;
  z-index: 1;
}

.home-lineup__item {
  position: relative;
  padding-top: 38px;
  min-height: clamp(16rem, 26vw, 22rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-lineup__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: #2a1e15;
}

.home-lineup__item:nth-child(2) {
  transform: translateY(clamp(20px, 3vw, 40px));
}

.home-lineup__item:nth-child(3) {
  transform: translateY(clamp(54px, 6vw, 88px));
}

.home-lineup__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: #8a7460;
  margin: 0 0 1rem;
}

.home-lineup__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 2.9vw, 3rem);
  letter-spacing: -0.045em;
  color: #2a1e15;
  margin: 0 0 0.85rem;
  line-height: 0.92;
  max-width: 7.5em;
}

.home-lineup__body {
  font-size: 0.92rem;
  line-height: 1.82;
  letter-spacing: 0.06em;
  color: #5b4a3c;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 820px) {
  .home-lineup::before {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .home-lineup__inner {
    grid-template-columns: 1fr;
  }

  .home-lineup__item,
  .home-lineup__item:nth-child(2),
  .home-lineup__item:nth-child(3) {
    transform: none;
    min-height: 0;
  }

  .home-lineup__title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }
}

/* ==========================================================================
   Home footer CTA band — used before the dark footer
   ========================================================================== */

.home-final {
  background: #2a1e15;
  color: #f2ede6;
  padding: clamp(88px, 12vw, 160px) 0;
  text-align: center;
}

.home-final__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.home-final__mark {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(242, 237, 230, 0.6);
  margin-bottom: 28px;
}

.home-final__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.85;
  letter-spacing: 0.12em;
  color: #f8f5f1;
  margin: 0 0 clamp(20px, 2vw, 26px);
}

.home-final__body {
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: rgba(242, 237, 230, 0.78);
  margin: 0 0 clamp(36px, 4vw, 52px);
}

.home-final__cta {
  display: inline-grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  width: clamp(260px, 28vw, 360px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 237, 230, 0.28);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.36em;
  color: #f8f5f1;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.home-final__cta:hover {
  color: #e1c9a8;
  border-bottom-color: rgba(225, 201, 168, 0.6);
}

.home-final__cta-line {
  display: block;
  height: 1px;
  background: rgba(242, 237, 230, 0.35);
  transition: background 0.3s ease;
}

.home-final__cta:hover .home-final__cta-line {
  background: rgba(225, 201, 168, 0.7);
}

.home-final__cta-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f8f5f1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-final__cta:hover .home-final__cta-dot {
  background: #e1c9a8;
  transform: translateX(4px);
}

@media (max-width: 960px) {
  /* ==========================================================================
     Home image safety override (mobile/tablet only)
     Keep full photos visible on narrow screens without breaking desktop layout.
     ========================================================================== */
  .page-home .floating-showcase .float-card__media,
  .page-home .home-plan-showcase .home-plan-card__media,
  .page-home #costume .editorial__primary,
  .page-home #costume .editorial__secondary {
    aspect-ratio: auto !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .page-home .floating-showcase .float-card__media img,
  .page-home .home-plan-showcase .home-plan-card__media img,
  .page-home #costume .editorial__primary img,
  .page-home #costume .editorial__secondary img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  .page-home #costume .editorial__primary {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 auto !important;
    width: min(calc(100vw - 1rem), 32rem) !important;
    max-width: calc(100vw - 1rem) !important;
    justify-self: center !important;
  }

  .page-home #costume .editorial__secondary {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 0.9rem auto 0 !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(62vw, 220px) !important;
    max-width: 220px !important;
    justify-self: center !important;
  }
}

/* ==========================================================================
   Campaign section redesign (stable responsive layout)
   Goal: no text/image overlap, full image visibility on every screen.
   ========================================================================== */
#campaign-event .editorial__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(1.25rem, 3vw, 2.5rem) !important;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  align-items: start !important;
  min-height: 0 !important;
}

#campaign-event .editorial__content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  justify-self: stretch !important;
}

#campaign-event .editorial__title,
#campaign-event .editorial__body {
  max-width: none !important;
}

#campaign-event .editorial__eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.26em !important;
  margin-bottom: 0.6rem !important;
}

#campaign-event .editorial__title {
  font-size: clamp(1.8rem, 2.45vw, 2.7rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.018em !important;
  margin: 0 0 0.8rem !important;
}

#campaign-event .editorial__body {
  font-size: clamp(0.84rem, 0.95vw, 0.96rem) !important;
  line-height: 1.64 !important;
  letter-spacing: 0.02em !important;
  margin: 0 0 1rem !important;
}

#campaign-event .editorial__title > span + span {
  padding-left: 0 !important;
}

#campaign-event .editorial__primary {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  justify-self: stretch !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

#campaign-event .editorial__primary img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

#campaign-event.editorial:hover .editorial__primary img {
  transform: none !important;
}

/* Sacrifice overlap ornament for layout stability. */
#campaign-event .editorial__secondary {
  display: none !important;
}

@media (max-width: 960px) {
  #campaign-event .editorial__inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: calc(100% - 1rem);
  }

  #campaign-event .editorial__primary {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  #campaign-event .editorial__content {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 0 0.25rem !important;
  }

  #campaign-event .editorial__title {
    font-size: clamp(1.5rem, 7.2vw, 2rem) !important;
    line-height: 1.02 !important;
  }

  #campaign-event .editorial__body {
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
  }
}

/* ==========================================================================
   About section redesign (reference style: hero photo + inset photo + side copy)
   ========================================================================== */
#about.editorial {
  padding: clamp(2.4rem, 4.6vw, 4rem) 0 !important;
}

#about .editorial__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
  grid-template-rows: auto auto !important;
  gap: clamp(0.9rem, 2.2vw, 1.9rem) clamp(1.1rem, 2.7vw, 2.4rem) !important;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  align-items: start !important;
  min-height: 0 !important;
}

#about .editorial__primary {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  justify-self: stretch !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

#about .editorial__primary img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

#about.editorial:hover .editorial__primary img {
  transform: none !important;
}

#about .editorial__secondary {
  position: relative !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: min(48%, 210px) !important;
  max-width: 210px !important;
  margin: calc(clamp(2.8rem, 5.8vw, 4.8rem) * -1) 0 0 clamp(0.75rem, 3vw, 2.6rem) !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: 0 18px 40px rgb(0 0 0 / 14%);
  transform: none !important;
  z-index: 4 !important;
}

#about .editorial__secondary img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

#about .editorial__content {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  display: block !important;
  max-width: none !important;
  width: 100%;
  padding: clamp(0.1rem, 0.8vw, 0.4rem) 0 !important;
  margin: 0 !important;
  justify-self: stretch !important;
  align-self: center !important;
}

#about .editorial__eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 0.55rem !important;
}

#about .editorial__title {
  max-width: 10.5em !important;
  font-size: clamp(1.7rem, 2.35vw, 2.55rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.018em !important;
  margin: 0 0 0.72rem !important;
}

#about .editorial__title > span + span {
  padding-left: 0 !important;
}

#about .editorial__body {
  max-width: 34ch !important;
  font-size: clamp(0.82rem, 0.92vw, 0.95rem) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.018em !important;
  margin: 0 0 0.9rem !important;
}

@media (max-width: 960px) {
  #about.editorial {
    padding: 2rem 0 !important;
  }

  #about .editorial__inner {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 0.75rem !important;
    width: calc(100% - 1rem);
  }

  #about .editorial__primary {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  #about .editorial__secondary {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: min(60vw, 200px) !important;
    max-width: 200px !important;
    margin: -1.1rem auto 0 !important;
    box-shadow: 0 14px 30px rgb(0 0 0 / 12%);
    z-index: 3 !important;
  }

  #about .editorial__content {
    grid-column: 1 !important;
    grid-row: 3 !important;
    padding: 0 0.25rem !important;
    align-self: start !important;
  }

  #about .editorial__title {
    max-width: none !important;
    font-size: clamp(1.42rem, 6.6vw, 1.95rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 0.6rem !important;
  }

  #about .editorial__body {
    max-width: 100% !important;
    font-size: 0.86rem !important;
    line-height: 1.58 !important;
    margin-bottom: 0.7rem !important;
  }
}

/* ==========================================================================
   Costume section redesign (aligned with about/campaign responsive model)
   ========================================================================== */
#costume.editorial {
  padding: clamp(2.2rem, 4.2vw, 3.6rem) 0 !important;
}

#costume .editorial__inner {
  display: grid !important;
  width: min(100% - 2rem, 980px) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(300px, 1.04fr) minmax(0, 0.96fr) !important;
  grid-template-rows: auto !important;
  gap: clamp(1.4rem, 3.2vw, 2.8rem) !important;
  align-items: center !important;
  min-height: 0 !important;
}

#costume .editorial__primary {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  justify-self: stretch !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

#costume .editorial__primary img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

#costume.editorial:hover .editorial__primary img {
  transform: none !important;
}

#costume .editorial__content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 !important;
  padding: clamp(0.15rem, 0.8vw, 0.45rem) clamp(0.3rem, 1vw, 0.75rem) 0 0 !important;
  justify-self: start !important;
  align-self: center !important;
}

#costume .editorial__eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 0.55rem !important;
}

#costume .editorial__title {
  max-width: 10.5em !important;
  font-size: clamp(1.72rem, 2.35vw, 2.55rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.018em !important;
  margin: 0 0 0.72rem !important;
}

#costume .editorial__title > span + span {
  padding-left: 0 !important;
}

#costume .editorial__body {
  max-width: 34ch !important;
  font-size: clamp(0.82rem, 0.92vw, 0.95rem) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.018em !important;
  margin: 0 0 0.9rem !important;
}

/* Secondary image removed from markup: ensure hidden if present. */
#costume .editorial__secondary {
  display: none !important;
}

@media (max-width: 960px) {
  #costume.editorial {
    padding: 1.8rem 0 !important;
  }

  #costume .editorial__inner {
    width: calc(100% - 1rem) !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0.75rem !important;
  }

  #costume .editorial__primary {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  #costume .editorial__content {
    grid-column: 1 !important;
    grid-row: 2 !important;
    max-width: none !important;
    padding: 0 0.25rem !important;
    align-self: start !important;
  }

  #costume .editorial__title {
    max-width: none !important;
    font-size: clamp(1.45rem, 6.6vw, 1.95rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 0.6rem !important;
  }

  #costume .editorial__body {
    max-width: 100% !important;
    font-size: 0.86rem !important;
    line-height: 1.58 !important;
    margin-bottom: 0.7rem !important;
  }
}

@media (max-width: 640px) {
  #about.editorial,
  #campaign-event.editorial {
    padding: 1.6rem 0 !important;
  }

  #about .editorial__inner,
  #campaign-event .editorial__inner {
    width: calc(100% - 0.75rem) !important;
    gap: 0.55rem !important;
  }

  #about .editorial__content,
  #campaign-event .editorial__content {
    padding: 0 0.15rem !important;
  }

  #about .editorial__title,
  #campaign-event .editorial__title {
    font-size: clamp(1.35rem, 8.2vw, 1.72rem) !important;
    line-height: 1.04 !important;
    margin-bottom: 0.55rem !important;
  }

  #about .editorial__body,
  #campaign-event .editorial__body {
    font-size: 0.84rem !important;
    line-height: 1.56 !important;
    margin-bottom: 0.72rem !important;
  }

  #about .editorial__secondary {
    width: min(52vw, 170px) !important;
    max-width: 170px !important;
    margin-top: 0.2rem !important;
  }
}

/* ==========================================================================
   About section (single image variant): remove color hero photo
   ========================================================================== */
#about .editorial__primary {
  display: none !important;
}

#about.editorial {
  padding: clamp(2.1rem, 4vw, 3.2rem) 0 !important;
}

#about .editorial__inner {
  width: min(100% - 2rem, 980px) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
  grid-template-rows: auto !important;
  gap: clamp(1rem, 2.6vw, 2.2rem) !important;
  align-items: center !important;
}

#about .editorial__content {
  grid-column: 1 !important;
  grid-row: 1 !important;
  max-width: 520px !important;
  justify-self: start !important;
  align-self: center !important;
}

#about .editorial__body {
  max-width: 40ch !important;
}

#about .editorial__secondary {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 340px) !important;
  max-width: 340px !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 960px) {
  #about.editorial {
    padding: 1.65rem 0 !important;
  }

  #about .editorial__inner {
    width: calc(100% - 1rem) !important;
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  #about .editorial__content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: none !important;
  }

  #about .editorial__secondary {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: min(70vw, 250px) !important;
    max-width: 250px !important;
    margin: 0.15rem auto 0 !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Guided booking flow (book.html) — calm, high-touch, no checkout          */
/* -------------------------------------------------------------------------- */

.page-book .book-flow {
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 2.5rem) 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #faf9f7 0%, #f3f1ed 42%, #ebe8e3 100%);
  color: var(--text);
}

.book-flow__wrap {
  max-width: 38rem;
  margin: 0 auto;
}

.book-flow__masthead {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 3rem);
}

.book-flow__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(90 86 78 / 0.75);
}

.book-flow__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.book-flow__subtitle {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgb(58 54 48 / 0.88);
}

.book-flow__progress {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 20rem;
  text-align: center;
}

.book-flow__progress-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.book-flow__progress-step {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.08);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.book-flow__progress-step.is-done {
  background: rgb(58 54 48 / 0.35);
}

.book-flow__progress-step.is-current {
  background: rgb(47 43 37 / 0.92);
  transform: scaleY(1.35);
}

.book-flow__progress-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(90 86 78 / 0.85);
}

.book-flow__step[hidden] {
  display: none !important;
}

.book-flow__loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .book-flow__loc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.book-flow__loc {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 0;
  border: none;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 12px 32px rgb(0 0 0 / 0.06);
  cursor: pointer;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.book-flow__loc:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 20px 44px rgb(0 0 0 / 0.09);
}

.book-flow__loc:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.book-flow__loc-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e4de;
}

.book-flow__loc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.book-flow__loc:hover .book-flow__loc-media img {
  transform: scale(1.04);
}

.book-flow__loc-label {
  display: block;
  padding: 0.85rem 1rem 0.15rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
}

.book-flow__loc-sub {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgb(90 86 78 / 0.9);
}

.book-flow__footnote {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgb(90 86 78 / 0.88);
}

.book-flow__footnote a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.book-flow__hero {
  margin: 0 0 1.25rem;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8e4de;
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.08);
}

.book-flow__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-flow__section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.book-flow__lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgb(58 54 48 / 0.9);
}

.book-flow__lead--tight {
  margin-bottom: 0.85rem;
}

.book-flow__story {
  margin-bottom: 1.75rem;
}

.book-flow__prose {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgb(58 54 48 / 0.88);
}

.book-flow__pick-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(90 86 78 / 0.85);
  font-weight: 600;
}

.book-flow__plan-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.book-flow__plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgb(0 0 0 / 0.08);
  background: rgb(255 255 255 / 0.72);
  cursor: pointer;
  color: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.book-flow__plan:hover {
  border-color: rgb(0 0 0 / 0.12);
  background: #fff;
}

.book-flow__plan.is-selected {
  border-color: rgb(47 43 37 / 0.35);
  background: #fff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.06);
}

.book-flow__plan--featured {
  border-color: rgb(143 133 99 / 0.45);
  background: linear-gradient(180deg, #fefcf8 0%, #fff 100%);
  box-shadow: 0 14px 32px rgb(143 133 99 / 0.12);
}

.book-flow__plan--featured.is-selected {
  box-shadow:
    0 16px 36px rgb(0 0 0 / 0.08),
    0 0 0 1px rgb(143 133 99 / 0.35);
}

.book-flow__plan-name {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(90 86 78 / 0.9);
}

.book-flow__plan-full {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
}

.book-flow__plan-price {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #6f664a;
}

.book-flow__plan-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgb(90 86 78 / 0.92);
}

.book-flow__addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.book-flow__addon {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgb(0 0 0 / 0.07);
  background: rgb(255 255 255 / 0.65);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.book-flow__addon:focus-within {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.book-flow__addon:hover {
  background: #fff;
  border-color: rgb(0 0 0 / 0.1);
}

.book-flow__addon input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.book-flow__addon-ui {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.08rem;
  border-radius: 0.38rem;
  border: 1.5px solid rgb(0 0 0 / 0.18);
  background: #fff;
  position: relative;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.book-flow__addon input:checked + .book-flow__addon-ui {
  background: rgb(47 43 37);
  border-color: rgb(47 43 37);
}

.book-flow__addon input:checked + .book-flow__addon-ui::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.2rem;
  width: 0.35rem;
  height: 0.65rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.book-flow__addon-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.book-flow__addon-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.book-flow__addon-hint {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgb(90 86 78 / 0.9);
}

.book-flow__summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 0.75);
  border: 1px solid rgb(0 0 0 / 0.06);
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.82rem;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-x: auto;
}

.book-flow__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.book-flow__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(90 86 78 / 0.9);
}

.book-flow__field--full {
  grid-column: 1 / -1;
}

.book-flow__field input,
.book-flow__field textarea {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgb(0 0 0 / 0.1);
  background: #fff;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  font-family: inherit;
}

.book-flow__field textarea {
  resize: vertical;
  min-height: 5rem;
}

.book-flow__fineprint {
  margin: 1rem 0 0;
  grid-column: 1 / -1;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgb(90 86 78 / 0.88);
}

.book-flow__fineprint a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.book-flow__done-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.book-flow__bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgb(250 249 247 / 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgb(0 0 0 / 0.06);
}

.book-flow__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  max-width: 38rem;
}

.book-flow__back {
  min-width: 5rem;
}

.book-flow__next {
  flex: 1;
  max-width: 14rem;
  margin-left: auto;
}

@media (max-width: 520px) {
  .book-flow__form {
    grid-template-columns: 1fr;
  }
}
