/* =========================================================
   1+1 LOVE STORY
   Bridal Website / Editorial Style
   Cleaned / consolidated version
   =========================================================

   Notes:
   - Legacy .collection-editorial styles removed.
   - New Bridal image heights consolidated.
   - Selected Gowns selectors aligned with current HTML.
   - Gown Series vertical video layout retained.
   - No !important added.
   ========================================================= */

/* =========================================================
   Root
========================================================= */

:root {
  --color-ink: #17130f;
  --color-ink-soft: #352d26;
  --color-muted: #746b63;

  --color-white: #ffffff;
  --color-black: #0e0c0a;

  --color-ivory: #f6f1ea;
  --color-cream: #eee5da;

  --color-gold: #a8875d;
  --color-gold-light: #d5bd9a;

  --color-line: rgba(23, 19, 15, 0.13);
  --color-line-light: rgba(255, 255, 255, 0.15);

  --shadow-soft: 0 20px 60px rgba(23, 19, 15, 0.1);

  --font-serif:
    "Noto Serif TC",
    "Source Han Serif TC",
    "Cormorant Garamond",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  --font-sans:
    "Noto Sans TC",
    "PingFang TC",
    "Microsoft JhengHei",
    system-ui,
    sans-serif;

  --page-width: min(1380px, calc(100vw - 64px));

  --header-height: 86px;

  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Animation Timing */
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
  --duration-slow: 0.8s;
  --easing-in-out: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-ease: ease;
}

/* =========================================================
   Reset
========================================================= */

* {
  box-sizing: border-box;
}

.mobile-only {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

figure,
blockquote {
  margin: 0;
}

fieldset {
  margin: 0;
}

::selection {
  background: var(--color-ink);
  color: var(--color-white);
}


/* =========================================================
   Accessibility
========================================================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;

  padding: 8px 14px;

  background: var(--color-ink);
  color: var(--color-white);

  font-size: 14px;

  transform: translateY(-160%);

  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}


/* =========================================================
   Shared Layout
========================================================= */

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.about-layout,
.new-bridal-section,
.collection-section,
.style-section,
.works-section,
.bespoke-section,
.journal-section,
.reservation-section {
  width: var(--page-width);
  margin-inline: auto;
}

.section-intro {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.section-intro > p:last-child {
  max-width: 620px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.9;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
  }
}

.eyebrow-light {
  color: var(--color-gold-light);
}


/* =========================================================
   Text Link
========================================================= */

.text-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;

  color: var(--color-ink);

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.text-link::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;

  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.text-link:hover {
  gap: 14px;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  font-size: 14px;
  line-height: 1;
}


/* =========================================================
   Header
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  min-height: var(--header-height);

  color: var(--color-white);

  background: transparent;

  border-bottom: 1px solid transparent;

  transition:
    background var(--duration-base) var(--easing-ease),
    border-color var(--duration-base) var(--easing-ease),
    color var(--duration-base) var(--easing-ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--color-ink);

  background:
    linear-gradient(
      to bottom,
      rgba(246, 241, 234, 1),
      rgba(246, 241, 234, 1)
    );

  border-bottom-color: rgba(23, 19, 15, 0.08);

  box-shadow:
    0 8px 30px rgba(23, 19, 15, 0.05);
}

.header-inner {
  width: min(1380px, calc(100% - 64px));
  min-height: var(--header-height);
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;

  flex: 0 0 auto;

  transform: none;
}

.brand-logo {
  display: block;

  width: 142px;
  height: auto;
}
.brand-mark {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.site-nav > a {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 40px;

  white-space: nowrap;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.site-nav > a[hidden] {
  display: none;
}

.site-nav > a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;

  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-reserve {
  min-height: 42px;
  padding: 0 18px;

  border: 1px solid currentColor;
}

.site-nav .nav-reserve::after {
  display: none;
}

.nav-toggle {
  display: none;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 0;

  background: transparent;

  color: currentColor;
}

.nav-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin: 7px auto;

  background: currentColor;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}


/* =========================================================
   Hero
========================================================= */

.hero {
  position: relative;

  width: 100%;
  height: 100svh;
  min-height: 680px;

  overflow: hidden;

  background: var(--color-ivory);
}

.hero-media {
  position: absolute;
  inset: 0;

  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

   background: var(--color-ivory);
}

.hero-media video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.04) 65%,
      rgba(0, 0, 0, 0.08)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1380px, calc(100% - 64px));
  min-height: 83svh;

  margin-inline: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding-left: clamp(48px, 8vw, 150px);
  padding-bottom: clamp(110px, 13vh, 160px);

  color: var(--color-white);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 92px;
  background: var(--color-gold-light);
  opacity: 0.8;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   Page Breadcrumb（各頁 Banner 用，統一比照最新婚紗禮服頁）
========================================================= */

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 26px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 11px;
  letter-spacing: 0.1em;
}

.page-breadcrumb a {
  padding-bottom: 2px;

  border-bottom: 1px solid transparent;

  color: inherit;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.page-breadcrumb a:hover {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb span[aria-current] {
  color: var(--color-white);
}

.hero-content h1 {
  max-width: 760px;

  margin: 0;

  color: var(--color-white);

  font-family: var(--font-serif);

  font-size: clamp(42px, 6vw, 80px);

  font-weight: 400;

  line-height: 1.1;

  letter-spacing: -0.035em;

  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.hero-cta {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  margin-top: 32px;
  padding: 0 24px;

  border: 1px solid rgba(255, 255, 255, 0.65);

  color: var(--color-white);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.hero-cta:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-ink);
}

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 28px;

  z-index: 3;

  width: 40px;
  height: 56px;

  transform: translateX(-50%);
}

.hero-scroll::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 9px;

  width: 1px;
  height: 30px;

  background: rgba(255, 255, 255, 0.75);

  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 8px;

  width: 7px;
  height: 7px;

  border-right: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);

  transform: translateX(-50%) rotate(45deg);

  animation: hero-scroll-move 1.7s ease-in-out infinite;
}

@keyframes hero-scroll-move {
  0%,
  100% {
    transform: translate(-50%, -4px) rotate(45deg);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, 4px) rotate(45deg);
    opacity: 1;
  }
}


/* =========================================================
   About
========================================================= */

.about-section {
  background: var(--color-white);
}

.about-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(0, 1.14fr);

  align-items: center;

  gap: clamp(56px, 8vw, 120px);
}

.about-copy {
  max-width: 570px;
}

.about-copy h2 {
  margin: 0;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: clamp(48px, 5.8vw, 84px);

  font-weight: 500;

  line-height: 1.03;

  letter-spacing: -0.035em;
}

.about-copy h2 em {
  font-style: normal;
}

.about-copy > p:not(.eyebrow) {
  color: var(--color-muted);
  line-height: 1.95;
}

.about-copy .lead {
  max-width: 580px;

  margin-top: 32px;

  color: var(--color-ink-soft) !important;

  font-size: clamp(17px, 1.5vw, 21px);

  line-height: 1.85 !important;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 560px;

  margin-top: 22px;

  font-size: 16px;
}

.about-visual {
  position: relative;

  margin: 0;

  overflow: hidden;

  background: var(--color-ivory);
}

.about-visual video {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.about-visual figcaption {
  position: absolute;

  left: 22px;
  bottom: 18px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;

  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   Dark Sections
========================================================= */

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-dark .section-intro h2,
.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   New Bridal
========================================================= */

.new-bridal-section {
  width: 100%;

  padding-inline:
    max(32px, calc((100vw - 1380px) / 2));
  background: var(--color-ivory);
  color: var(--color-ink);
}

.new-bridal-section .section-intro {
  max-width: 1380px;
  margin-inline: auto;
   color: var(--color-ink);
}
.new-bridal-section .section-intro .eyebrow {
  color: var(--color-gold);
}

.new-bridal-section .section-intro h2 {
  color: var(--color-ink);
}

.new-bridal-section .section-intro > p:last-child {
  color: var(--color-muted);
}
.new-bridal-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(0, 0.82fr);

  gap: clamp(20px, 3vw, 48px);

  margin-top: clamp(48px, 6vw, 78px);

  align-items: stretch;
}

.new-bridal-card {
  position: relative;

  display: block;

  min-width: 0;

  overflow: hidden;

  color: var(--color-ink);

  text-decoration: none;

  background: transparent;
}

.new-bridal-card figure {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;

  overflow: hidden;

  background: #e8dfd5;
}

.new-bridal-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.new-bridal-card::after {
  content: "";

  position: absolute;

  inset: 0 0 auto;

  height: 100%;

  pointer-events: none;
}

.new-bridal-card .collection-caption {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 28px;

  z-index: 2;
  padding-top: 20px;

  color: var(--color-ink);
  
}

.new-bridal-card .collection-caption span {
   display: block;

  margin-bottom: 9px;

  color: var(--color-gold-light);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.22em;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.new-bridal-card .collection-caption h3 {
  margin: 0;

  color: var(--color-white);

  font-family: var(--font-serif);

  font-size: clamp(24px, 2.2vw, 34px);

  font-weight: 400;

  line-height: 1.25;

  letter-spacing: 0.04em;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.new-bridal-card .collection-caption p {
  margin: 9px 0 0;

  color: var(--color-white);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.2em;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.new-bridal-rail-wrap {
  position: relative;
  width: calc(100% + 64px);
  margin-left: -32px;
  margin-top: clamp(48px, 6vw, 78px);
}

.new-bridal-rail {
  display: flex;
  align-items: center;
  gap: 2%;
  padding: 56px 0 64px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.new-bridal-rail-spacer {
  flex: 0 0 34%;
}

.new-bridal-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 19, 15, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(23, 19, 15, 0.14);
  transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.new-bridal-rail-wrap:hover .new-bridal-arrow,
.new-bridal-arrow:focus-visible {
  opacity: 1;
}

.new-bridal-arrow:hover,
.new-bridal-arrow:focus-visible {
  border-color: var(--color-gold);
  background: var(--color-white);
  transform: translateY(-50%) scale(1.06);
}

.new-bridal-arrow-prev { left: 24px; }
.new-bridal-arrow-next { right: 24px; }

@media (max-width: 900px) {
  .new-bridal-arrow {
    opacity: 1;
  }
}

.new-bridal-rail::-webkit-scrollbar { display: none; }
.new-bridal-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.new-bridal-rail img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.new-bridal-rail .new-bridal-card {
  flex: 0 0 32%;
  aspect-ratio: 2 / 3;
  height: auto;
  scroll-snap-align: center;
  cursor: pointer;
  opacity: 1;
  -webkit-user-drag: none;
  transform: scale(0.82);
  transition: transform 0.5s var(--easing-in-out), opacity 0.5s ease, box-shadow 0.5s ease;
}

.new-bridal-rail .new-bridal-card.is-current {
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: scale(1.15);
}

.new-bridal-rail .new-bridal-card figure { height: 100%; }
.new-bridal-rail .new-bridal-card img { object-position: center center; }
.new-bridal-rail .new-bridal-card::after {
  display: block;
  background: linear-gradient(
    to top,
    rgba(14, 12, 10, 0.88) 0%,
    rgba(14, 12, 10, 0.7) 32%,
    rgba(14, 12, 10, 0.28) 52%,
    transparent 68%
  );
}

.new-bridal-rail .new-bridal-card:not(.is-current)::after {
  display: block;
  background: linear-gradient(
    to top,
    rgba(14, 12, 10, 0.88) 0%,
    rgba(14, 12, 10, 0.7) 32%,
    rgba(14, 12, 10, 0.3) 52%,
    rgba(255, 255, 255, 0.55) 68%,
    rgba(255, 255, 255, 0.55) 100%
  );
}

.new-bridal-rail-meta {
  display: flex;
  justify-content: center;
  min-height: 20px;
}

.new-bridal-dots { display: flex; align-items: center; gap: 8px; }
.new-bridal-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-muted);
  opacity: 0.5;
  cursor: pointer;
}
.new-bridal-dots button.is-active { width: 20px; border-radius: 5px; background: var(--color-gold); opacity: 1; }

@media (max-width: 700px) {
  .new-bridal-rail-wrap {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .new-bridal-rail {
    gap: 0;
  }

  .new-bridal-rail-spacer {
    flex-basis: 0%;
  }

  .new-bridal-rail .new-bridal-card {
    flex-basis: 100%;
    padding-inline: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .new-bridal-rail .new-bridal-card.is-current {
    padding-inline: 16px;
    transform: none;
    box-shadow: none;
  }

  .new-bridal-rail .new-bridal-card::after {
    left: 0;
    right: 0;
  }

  .new-bridal-rail .new-bridal-card.is-current::after {
    left: 16px;
    right: 16px;
  }

  .new-bridal-card .collection-caption {
    text-align: center;
  }
}


/* =========================================================
   Bridal Collection
   婚紗系列輪播
========================================================= */

.bridal-collection-section {
  padding: clamp(100px, 11vw, 170px) 5vw;
  background: #f5f0e9;
  color: #302a26;
}


/* =========================================================
   Intro
========================================================= */

.bridal-collection-intro {
  max-width: 720px;
  margin: 0 auto clamp(55px, 7vw, 90px);
  text-align: center;
}

.bridal-collection-eyebrow {
  margin: 0 0 18px;
  color: #a4856d;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.28em;
}

.bridal-collection-intro h2 {
  margin: 0;
  color: #302a26;
  font-family:
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.bridal-collection-description {
  max-width: 560px;
  margin: 28px auto 0;
  color: #766b62;
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}


/* =========================================================
   Slider
========================================================= */

.bridal-collection-slider {
  position: relative;
  width: min(1180px, 100%);
  height: clamp(560px, 68vw, 760px);
  margin: 0 auto;
  overflow: hidden;
  background: #e8dfd6;
}


/* =========================================================
   Slide
========================================================= */

.bridal-collection-slide {
  position: absolute;
  inset: 0;

  display: block;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  color: inherit;
  text-decoration: none;

  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.bridal-collection-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}


/* =========================================================
   Media
========================================================= */

.bridal-collection-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.bridal-collection-media::after {
  position: absolute;
  inset: 0;

  content: "";

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.62),
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0)
    );

  pointer-events: none;
}

.bridal-collection-media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  background: #e8dfd6;

  transform: scale(1.015);

  transition:
    transform 5.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bridal-collection-slide.is-active
.bridal-collection-media img {
  transform: scale(1);
}


/* =========================================================
   Caption
========================================================= */

.bridal-collection-caption {
  position: absolute;
  left: clamp(28px, 5vw, 70px);
  bottom: clamp(35px, 5vw, 65px);
  z-index: 2;
}

.bridal-collection-caption span {
  display: block;
  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 8px;
  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.23em;
}

.bridal-collection-caption h3 {
  margin: 0;

  color: #fff;

  font-family:
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size: clamp(38px, 5vw, 68px);

  font-weight: 300;

  line-height: 1.1;

  letter-spacing: 0.06em;
}

.bridal-collection-caption p {
  margin: 13px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 8px;

  line-height: 1.4;

  letter-spacing: 0.2em;
}


/* =========================================================
   Progress
========================================================= */

.bridal-collection-progress {
  position: absolute;

  right: clamp(28px, 5vw, 70px);
  bottom: clamp(38px, 5vw, 65px);

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.bridal-collection-progress-line {
  width: 38px;
  height: 1px;

  background: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   Controls
========================================================= */

.bridal-collection-controls {
  position: absolute;

  top: 50%;
  right: clamp(22px, 3vw, 42px);

  z-index: 4;

  display: flex;
  flex-direction: column;
  gap: 8px;

  transform: translateY(-50%);
}

.bridal-collection-control {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.45);

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 17px;
  line-height: 1;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.bridal-collection-control:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
}

.bridal-collection-control:active {
  transform: scale(0.94);
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

  .bridal-collection-slider {
    height: 680px;
  }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 600px) {

  .bridal-collection-section {
    padding: 85px 20px;
  }

  .bridal-collection-intro {
    margin-bottom: 45px;
  }

  .bridal-collection-intro h2 {
    font-size: 44px;
  }

  .bridal-collection-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 2;
  }

  .bridal-collection-slider {
    height: 620px;
  }

  .bridal-collection-caption {
    left: 22px;
    bottom: 28px;
  }

  .bridal-collection-caption span {
    font-size: 7px;
  }

  .bridal-collection-caption h3 {
    font-size: 34px;
  }

  .bridal-collection-caption p {
    font-size: 7px;
  }

  .bridal-collection-progress {
    right: 22px;
    bottom: 30px;
  }

  .bridal-collection-controls {
    right: 14px;
  }

  .bridal-collection-control {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

}

/* =========================================================
   Bridal Style / Editorial Lookbook
========================================================= */

.style-section {
  width: var(--page-width);
  margin-inline: auto;
  background: var(--color-white);
}


/* ---------- Intro ---------- */

.style-intro-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);

  align-items: end;
  gap: clamp(48px, 8vw, 120px);

  margin-bottom: clamp(48px, 6vw, 78px);
}

.style-intro {
  margin-bottom: 0;
}

.style-intro-description {
  max-width: 430px;

  margin: 0 0 5px;

  color: var(--color-muted);

  font-size: 16px;
  line-height: 1.95;
}


/* ---------- Navigation ---------- */

.style-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-bottom: 28px;

  border-top: 1px solid var(--color-line);
}

.style-tab {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  min-height: 76px;

  padding: 0;

  border: 0;
  border-bottom: 1px solid var(--color-line);

  background: transparent;

  color: rgba(23, 19, 15, 0.42);

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;

  text-align: left;

  transition:
    color 0.35s ease,
    padding-left 0.35s ease;
}

.style-tab + .style-tab {
  margin-left: 34px;
}

.style-tab > span {
  color: var(--color-gold);

  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.style-tab::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -1px;

  width: 100%;
  height: 1px;

  background: var(--color-ink);

  transform: scaleX(0);
  transform-origin: right center;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.style-tab:hover {
  color: var(--color-ink);
}

.style-tab.is-active {
  color: var(--color-ink);
}

.style-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}


/* ---------- Panels ---------- */

.style-panels {
  position: relative;
}

.style-panel {
  display: grid;

  grid-template-columns:
    minmax(0, 0.65fr)
    minmax(300px, 0.65fr);
  grid-template-rows: minmax(0, 1fr);

  align-items: stretch;

  min-height: 520px;

  background: transparent;

  opacity: 1;
  transition: opacity 0.28s ease;
}

#selected-gowns .style-panel {
  min-height: 680px;
}

.style-panel.is-fading-out {
  opacity: 0;
}

.style-panel.is-reversed .style-panel-image {
  order: 2;
}

.style-panel.is-reversed .style-panel-copy {
  order: 1;
  padding-right: clamp(38px, 5vw, 74px);
  padding-left: 0;
}

.style-panel.is-reversed .style-panel-copy::before {
  right: clamp(38px, 5vw, 74px);
  left: auto;
}

.style-panel[hidden] {
  display: none;
}

/* ---------- Main Image ---------- */

.style-panel-image {
  position: relative;

  min-width: 0;
  margin: 0;

  overflow: hidden;

  background: var(--color-ivory);
}

.style-panel-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.03),
      transparent 30%
    );

  pointer-events: none;
}

.style-panel-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.001);

  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Copy ---------- */

.style-panel-copy {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding:
    clamp(48px, 6vw, 86px)
    0
    clamp(44px, 5vw, 72px)
    clamp(38px, 5vw, 74px);

  background: var(--color-white);
}

.style-panel-copy::before {
  content: "";

  position: absolute;

  top: clamp(48px, 6vw, 86px);
  left: clamp(38px, 5vw, 74px);

  width: 38px;
  height: 1px;

  background: var(--color-gold);
}

.style-panel-index {
  display: block;

  margin-bottom: 22px;

  color: var(--color-gold);

  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.18em;
}

.style-panel-copy h3 {
  margin: 0;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: clamp(44px, 4.2vw, 68px);
  font-weight: 400;

  line-height: 1.05;
  letter-spacing: -0.035em;
}

.style-panel-copy > p {
  max-width: 350px;

  margin: 26px 0 0;

  color: var(--color-muted);

  font-size: 16px;
  line-height: 2;
}

.style-panel-copy .text-link {
  margin-top: 34px;
}


/* =========================================================
   Style / Tablet
========================================================= */

@media (max-width: 900px) {

  .style-intro-layout {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 48px;
  }

  .style-intro-description {
    max-width: 560px;
  }

  .style-nav {
    margin-bottom: 20px;
  }

  .style-tab {
    min-height: 66px;
  }

  .style-tab + .style-tab {
    margin-left: 20px;
  }

  .style-panel {
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(260px, 0.75fr);

    min-height: 460px;
  }

  #selected-gowns .style-panel {
    min-height: 580px;
  }

  .style-panel-copy {
    padding:
      48px
      0
      42px
      34px;
  }

  .style-panel-copy::before {
    top: 48px;
    left: 34px;
  }

}


/* =========================================================
   Style / Mobile
========================================================= */

@media (max-width: 620px) {

  .style-intro-layout {
    margin-bottom: 36px;
  }

  .style-intro-description {
    font-size: 16px;
    line-height: 1.85;
  }


  /* Tabs 手機版滿版顯示，不需左右滑動 */

  .style-nav {
    margin-bottom: 18px;
  }

  .style-tab {
    min-height: 62px;

    gap: 8px;

    font-size: 12px;
  }

  .style-tab + .style-tab {
    margin-left: 12px;
  }


  /* Image first, editorial copy below */

  .style-panel {
    display: block;

    min-height: 0;
  }

  .style-panel[hidden] {
    display: none;
  }

  .style-panel-image {
    width: 100%;

    aspect-ratio: 4 / 5;
  }

  .style-panel-image img {
    height: 100%;
  }

  .style-panel-copy {
    display: block;

    padding:
      42px
      0
      8px;
  }

  .style-panel-copy::before {
    top: 26px;
    left: 0;

    width: 30px;
  }

  .style-panel-index {
    margin-bottom: 14px;

    font-size: 10px;
  }

  .style-panel-copy h3 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .style-panel-copy > p {
    max-width: 100%;

    margin-top: 18px;

    font-size: 16px;
    line-height: 1.9;
  }

  .style-panel-copy .text-link {
    margin-top: 26px;
  }

}


/* =========================================================
   Selected Gowns
========================================================= */

.works-section {
  background: var(--color-white);
}

.works-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 32px;

  margin-bottom: clamp(42px, 6vw, 72px);
}

.works-heading h2 {
  margin: 0;
}

.works-heading .text-link {
  flex: 0 0 auto;
  margin-top: 0;
}


/* ---------------------------------------------------------
   Editorial Gallery

   Desktop:
   01 主婚紗 / 02 晚禮服
   03 細節 / 04 細節

   讓第一排具有明確主次，
   第二排則作為較輕的細節展示。
--------------------------------------------------------- */

.works-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, 0.85fr);

  grid-template-rows:
    minmax(520px, 56vw)
    minmax(280px, 31vw);

  gap: 18px;
}


/* ---------------------------------------------------------
   Work
--------------------------------------------------------- */

.work {
  position: relative;

  display: block;

  width: 100%;
  min-width: 0;
  min-height: 0;

  padding: 0;

  overflow: hidden;

  border: 0;

  background: var(--color-ivory);

  cursor: pointer;

  text-align: left;
}

.work img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.9s var(--easing-in-out),
    filter 0.6s ease;
}

.work::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.08) 52%,
      transparent 78%
    );

  pointer-events: none;
}

.work:hover img {
  transform: scale(1.035);
  filter: brightness(0.95);
}

.work:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}


/* ---------------------------------------------------------
   Grid Position
--------------------------------------------------------- */

.work-tall {
  grid-column: 1;
  grid-row: 1;
}

.work-wide {
  grid-column: 2;
  grid-row: 1;
}

.work-standard:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.work-standard:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}


/* ---------------------------------------------------------
   Caption
--------------------------------------------------------- */

.work > span {
  position: absolute;

  left: clamp(20px, 2.5vw, 34px);
  bottom: clamp(20px, 2.5vw, 34px);

  z-index: 2;

  color: rgba(255, 255, 255, 0.92);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.22em;
}


/* =========================================================
   Selected Gowns / Tablet
========================================================= */

@media (max-width: 900px) {

  .works-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows:
      minmax(460px, 62vw)
      minmax(260px, 38vw);

    gap: 14px;
  }

  .work-tall,
  .work-wide {
    grid-column: auto;
    grid-row: 1;
  }

  .work-standard:nth-of-type(3),
  .work-standard:nth-of-type(4) {
    grid-column: auto;
    grid-row: 2;
  }

}


/* =========================================================
   Selected Gowns / Mobile
========================================================= */

@media (max-width: 620px) {

  .works-heading {
    display: block;

    margin-bottom: 36px;
  }

  .works-heading .text-link {
    margin-top: 22px;
  }

  .works-grid {
    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 14px;
  }

  .work-tall,
  .work-wide,
  .work-standard {
    grid-column: auto;
    grid-row: auto;

    aspect-ratio: 4 / 5;
  }

  .work img {
    object-position: center;
  }

  .work > span {
    left: 20px;
    bottom: 20px;
  }

}

/* =========================================================
   Bespoke
========================================================= */

.bespoke-section {
  width: 100%;

  padding-inline:
    max(32px, calc((100vw - 1380px) / 2));

  background: var(--color-cream);
}

.bespoke-layout {
  max-width: 1380px;

  margin-inline: auto;

  display: grid;

  grid-template-columns: 1.4fr 1.2fr;

  align-items: stretch;

  gap: 0;
}

.bespoke-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(52px, 7vw, 100px)
    clamp(38px, 7vw, 110px);

  background: var(--color-cream);
}

.bespoke-copy h2 {
  margin: 0;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: clamp(44px, 5vw, 68px);

  font-weight: 500;

  line-height: 1.05;
}

.bespoke-copy .lead {
  margin-top: 28px;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: clamp(28px, 3vw, 40px);

  line-height: 1.15;
}

.bespoke-copy > p:not(.eyebrow):not(.lead) {
  max-width: 500px;

  margin-top: 22px;

  color: var(--color-muted);

  line-height: 1.9;
}

.bespoke-points {
  display: grid;

  margin: 34px 0 0;
  padding: 0;

  list-style: none;

  border-top: 1px solid var(--color-line);
}

.bespoke-points li {
  display: grid;

  grid-template-columns:
    42px
    145px
    1fr;

  align-items: start;

  gap: 14px;

  padding: 18px 0;

  border-bottom: 1px solid var(--color-line);
}

.bespoke-points li > span {
  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.bespoke-points strong {
  color: var(--color-ink);

  font-size: 13px;
}

.bespoke-points p {
  margin: 0;

  color: var(--color-muted);
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.7;
}

.bespoke-visual {
  position: relative;

  min-height: 700px;

  overflow: hidden;

  background: #ddd4c9;
}

.bespoke-visual img {
  width: 100%;
  height: 100%;
 
  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   Journal
========================================================= */

.journal-section {
  background: var(--color-white);
}

.journal-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 0;

  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.journal-card {
  min-height: 340px;

  padding:
    38px
    clamp(24px, 4vw, 52px);

  border-right: 1px solid var(--color-line);
}

.journal-card:last-child {
  border-right: 0;
}

.journal-card > span {
  display: block;

  color: var(--color-gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.2em;
}

.journal-card h3 {
  max-width: 340px;

  margin: 22px 0 0;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: clamp(27px, 2.5vw, 36px);

  font-weight: 500;

  line-height: 1.18;
}

.journal-card p {
  max-width: 340px;

  margin-top: 18px;

  color: var(--color-muted);

  font-size: 16px;

  line-height: 1.85;
}

.journal-card .text-link {
  margin-top: 26px;
}


/* =========================================================
   Manifesto / Brand Statement
========================================================= */

.manifesto-section {
  position: relative;

  width: 100%;

  min-height: clamp(560px, 52vw, 820px);

  overflow: hidden;

  background: var(--color-ivory);
}


/* ---------------------------------------------------------
   Visual
--------------------------------------------------------- */

.manifesto-visual {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.manifesto-bg {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 26%;

  transform: scale(1.001);
}


/* ---------------------------------------------------------
   Content
--------------------------------------------------------- */

.manifesto-content {
  position: relative;

  z-index: 2;

  width: min(1380px, calc(100% - 64px));

  min-height: clamp(560px, 52vw, 820px);

  margin-inline: auto;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  padding-left: clamp(
    24px,
    7vw,
    120px
  );

  padding-top: 20px;

  color: #8b7664;
}


/* ---------------------------------------------------------
   Eyebrow
--------------------------------------------------------- */

.manifesto-content .eyebrow {
  margin: 0 0 24px;

  color: rgba(126, 100, 79, 0.78);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.28em;

  text-transform: uppercase;
}


/* ---------------------------------------------------------
   Quote
--------------------------------------------------------- */

.manifesto-content blockquote {
  max-width: 760px;

  margin: 0;

  color: #806c5c;

  font-family:
    "Noto Serif TC",
    "Noto Serif CJK TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size: clamp(
    30px,
    3.15vw,
    54px
  );

  font-weight: 400;

  line-height: 1.72;

  letter-spacing: 0.075em;

  text-align: left;

  text-wrap: balance;

  text-shadow:
    0 1px 8px rgba(255, 255, 255, 0.16);
}

.manifesto-quote-mobile {
  display: none;
}


/* ---------------------------------------------------------
   Decoration
--------------------------------------------------------- */

.manifesto-decoration {
  display: flex;

  align-items: center;

  width: 360px;

  margin-top: 34px;

  color: rgba(157, 128, 104, 0.58);
}

.manifesto-decoration > span {
  display: block;

  width: 240px;

  height: 1px;

  background: currentColor;
}

.manifesto-decoration svg {
  display: block;

  width: 82px;
  height: 25px;

  overflow: visible;
}

.manifesto-decoration path {
  fill: none;

  stroke: currentColor;

  stroke-width: 0.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* ---------------------------------------------------------
   Signature
--------------------------------------------------------- */

.manifesto-signature {
  display: block;

  margin-top: 22px;

  color: rgba(126, 100, 79, 0.7);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.28em;
}


/* ---------------------------------------------------------
   Remove Dark Overlay
--------------------------------------------------------- */

.manifesto-overlay {
  display: none;
}


/* =========================================================
   Manifesto / Tablet
========================================================= */

@media (max-width: 900px) {

  .manifesto-section {
    min-height: 620px;
  }

  .manifesto-content {
    width: calc(100% - 48px);

    min-height: 620px;

    padding-left: 6vw;
  }

  .manifesto-content blockquote {
    max-width: 620px;

    font-size: clamp(
      30px,
      5vw,
      46px
    );
  }

  .manifesto-decoration {
    width: 300px;
  }

  .manifesto-decoration > span {
    width: 190px;
  }

}


/* =========================================================
   Manifesto / Mobile
========================================================= */

@media (max-width: 620px) {

  .manifesto-section {
    min-height: 560px;
  }

  .manifesto-bg {
    object-position: 63% 25%;
  }

  .manifesto-content {
    width: calc(100% - 32px);

    min-height: 560px;

    justify-content: flex-start;

    padding: 44px 16px 0;
  }

  .manifesto-quote-desktop {
    display: none;
  }

  .manifesto-quote-mobile {
    display: block;
  }

  .manifesto-content .eyebrow {
    margin-bottom: 16px;

    font-size: 9px;
  }

  .manifesto-content blockquote {
    max-width: 100%;

    font-size: clamp(
      22px,
      6.5vw,
      30px
    );

    line-height: 1.55;

    letter-spacing: 0.025em;
  }

  .manifesto-decoration {
    width: 170px;

    margin-top: 24px;
  }

  .manifesto-decoration > span {
    width: 90px;
  }

  .manifesto-decoration svg {
    width: 72px;
  }

  .manifesto-signature {
    margin-top: 18px;

    font-size: 8px;
  }

}


/* =========================================================
   Reservation
========================================================= */

.reservation-section {
  width: 100%;

  padding-top: clamp(48px, 6vw, 90px);

  padding-inline:
    max(32px, calc((100vw - 1380px) / 2));

  background: var(--color-white);
}

.reservation-layout {
  max-width: 1380px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);

  gap: clamp(60px, 8vw, 120px);
}

.reservation-intro {
  max-width: 540px;

  color: var(--color-ink);
}

.reservation-intro h2 {
  margin: 0;

  color: var(--color-ink);

  font-family:
    "Noto Serif TC",
    "Noto Serif CJK TC",
    "PingFang TC",
    serif;

   font-size: clamp(40px, 4.8vw, 70px);

  font-weight: 300;

  line-height: 1.5;

  letter-spacing: 0.11em;
  color: #766354;
}

.reservation-intro h2 em {
  font-style: normal;
  display: inline-block;
  color: var(--color-gold);
  margin-top: 4px;
  font-family:
    "Noto Serif TC",
    "Noto Serif CJK TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;
  font-size: 1.05em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
  color: #8a7563;
}

.reservation-intro > p:not(.eyebrow) {
  margin-top: 28px;

  color: var(--color-muted);

  line-height: 1.95;
}

.contact-note {
  display: none;

  gap: 7px;

  margin-top: 46px;

  padding-top: 22px;

  border-top: 1px solid var(--color-line);
}

.contact-note span {
  color: var(--color-gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.22em;
}

.contact-note strong {
  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: 28px;

  font-weight: 500;
}

.contact-note small {
  color: var(--color-muted);

  font-size: 12px;
}

.reservation-form {
  padding:
    clamp(30px, 4vw, 56px);

  background: var(--color-ivory);
}

.form-grid {
  display: grid;

  gap: 18px;
}

.form-grid-2 {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.form-field {
  display: block;

  margin: 0 0 20px;

  color: var(--color-ink-soft);

  font-size: 12px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;

  width: 100%;

  margin-top: 8px;

  border: 1px solid var(--color-line);

  border-radius: 0;

  background: var(--color-white);

  color: var(--color-ink);

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  height: 52px;

  padding: 0 13px;
}

.form-field textarea {
  min-height: 130px;

  padding: 13px;

  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);

  box-shadow:
    0 0 0 3px rgba(168, 135, 93, 0.12);
}

.form-field select {
  appearance: none;

  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 1.5 6 6.5 11 1.5' fill='none' stroke='%2317130F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 17px center;
}

.form-field input[type="date"] {
  position: relative;

  appearance: none;
  -webkit-appearance: none;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2317130F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.form-fieldset {
  margin: 10px 0 24px;

  padding: 0;

  border: 0;
}

.form-fieldset legend {
  margin-bottom: 12px;

  color: var(--color-ink-soft);

  font-size: 12px;
  font-weight: 600;
}

.choice-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 8px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;

  min-height: 46px;

  padding: 8px 10px;

  border: 1px solid var(--color-line);

  background: var(--color-white);

  color: var(--color-ink-soft);

  font-size: 12px;
}

.choice-grid input {
  width: 15px;
  height: 15px;

  margin: 0;

  accent-color: var(--color-ink);
}

.form-collapse {
  margin: 10px 0 24px;

  border: 1px solid var(--color-line);
}

.form-collapse + .form-collapse {
  margin-top: -14px;
}

.form-collapse summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px;

  color: var(--color-ink-soft);

  font-size: 12px;
  font-weight: 600;

  list-style: none;

  cursor: pointer;
}

.form-collapse summary::-webkit-details-marker {
  display: none;
}

.form-collapse summary::after {
  content: "+";

  color: var(--color-muted);

  font-size: 16px;
  line-height: 1;

  transition: transform 0.25s ease;
}

.form-collapse[open] summary::after {
  transform: rotate(45deg);
}

.form-collapse .choice-grid {
  padding: 0 16px 16px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  min-height: 54px;

  margin-top: 8px;

  border: 1px solid var(--color-ink);

  background: var(--color-ink);

  color: var(--color-white);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.form-submit:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.form-note {
  min-height: 22px;

  margin: 14px 0 0;

  color: #5b6b45;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   Footer
========================================================= */

.site-footer {
  background: var(--color-ivory);

  color: var(--color-ink);
}

.footer-main {
  width: var(--page-width);

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1.3fr
    0.8fr
    0.8fr;

  gap: 60px;

  padding:
    72px 0 58px;
}

.footer-brand {
  display: inline-block;

  color: var(--color-ink);

  font-family: var(--font-serif);

  font-size: 54px;

  line-height: 0.9;
}

.footer-brand-block p {
  margin: 12px 0 0;

  color: var(--color-muted);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.24em;
}

.footer-brand-block > span {
  display: block;

  max-width: 420px;

  margin-top: 18px;

  color: rgba(23, 19, 15, 0.6);

  font-size: 11px;

  line-height: 1.7;
}

.footer-links {
  display: grid;

  align-content: start;

  gap: 12px;
}

.footer-links a {
  color: var(--color-ink);

  font-size: 12px;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  margin: 0 0 8px;

  color: var(--color-muted);

  font-size: 12px;
}

.footer-contact a {
  display: inline-block;

  margin-top: 16px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.footer-bottom {
  width: var(--page-width);

  margin-inline: auto;

  padding: 20px 0 24px;

  border-top: 1px solid rgba(23, 19, 15, 0.15);

  color: rgba(23, 19, 15, 0.55);

  font-size: 10px;

  letter-spacing: 0.04em;
}

.line-contact-button {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 900;
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(23, 19, 15, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.line-contact-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(23, 19, 15, 0.22);
}

.line-contact-button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .line-contact-button {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }
}

.back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(max(20px, env(safe-area-inset-bottom)) + 68px + 12px);
  z-index: 900;

  display: grid;
  place-items: center;

  width: 68px;
  height: 68px;

  border: 1px solid rgba(48, 42, 38, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  box-shadow: 0 8px 20px rgba(23, 19, 15, 0.14);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 58px + 10px);
    width: 58px;
    height: 58px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}


/* =========================================================
   Lightbox
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;

  z-index: 2500;

  display: grid;
  place-items: center;

  padding: 24px;
  box-sizing: border-box;

  background: rgba(11, 9, 7, 0.9);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1200px, calc(100vw - 48px));
  max-height: 88vh;
  max-height: 88dvh;

  width: auto;
  height: auto;

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

  font-size: 28px;

  line-height: 1;

  cursor: pointer;
}


/* =========================================================
   Scroll Lock
========================================================= */

body.is-locked {
  overflow: hidden;
  touch-action: none;
}

body.is-locked [data-scroll-lock-ignore] {
  touch-action: pan-y;
}


/* =========================================================
   Reveal
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   Brand Story
========================================================= */

.brand-story-page {
  overflow: hidden;
  background: var(--color-white);
}

.brand-story-hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.brand-story-hero > img,
.brand-story-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-story-hero > img {
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.brand-story-hero-overlay {
  background: linear-gradient(90deg, rgba(14, 12, 10, 0.72), rgba(14, 12, 10, 0.12) 72%), linear-gradient(0deg, rgba(14, 12, 10, 0.35), transparent 45%);
}

.brand-story-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--page-width);
  min-height: 83svh;
  margin-inline: auto;
  padding: clamp(120px, 15vw, 190px) 0 clamp(110px, 13vh, 160px) clamp(48px, 8vw, 150px);
}

.brand-story-hero-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 92px;
  background: var(--color-gold-light);
  opacity: 0.8;
}

.brand-story-hero-copy h1,
.brand-story-intro h2,
.brand-story-feature-copy h2,
.brand-story-origin-copy h2,
.brand-story-craft-copy h2,
.brand-story-services h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.brand-story-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.5vw, 92px);
}

.brand-story-hero-copy h1 em,
.brand-story-intro h2 em,
.brand-story-feature-copy h2 em,
.brand-story-origin-copy h2 em,
.brand-story-craft-copy h2 em,
.brand-story-services h2 em {
  color: var(--color-gold-light);
  font-style: normal;
}

.brand-story-hero-copy > p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand-story-intro,
.brand-story-origin,
.brand-story-services {
  width: var(--page-width);
  margin-inline: auto;
}

.brand-story-services {
  padding-bottom: clamp(48px, 6vw, 90px);
}

.brand-story-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 10vw, 160px);
  align-items: start;
  border-top: 1px solid var(--color-line);
}

.brand-story-intro h2,
.brand-story-origin-copy h2,
.brand-story-services h2 {
  font-size: clamp(40px, 5vw, 70px);
}

.brand-story-intro-copy {
  max-width: 620px;
  padding-top: 44px;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid var(--color-gold-light);
}

.brand-story-intro-copy p,
.brand-story-feature-copy > p,
.brand-story-origin-copy > p,
.brand-story-craft-copy > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2;
}

.brand-story-intro-copy p + p,
.brand-story-origin-copy p + p,
.brand-story-craft-copy p + p {
  margin-top: 22px;
}

.brand-story-intro-copy .brand-story-lead {
  color: var(--color-ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.55;
}

.brand-story-feature,
.brand-story-craft {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 680px;
  background: var(--color-ivory);
}

.brand-story-feature-image,
.brand-story-craft-image {
  min-height: 680px;
  overflow: hidden;
}

.brand-story-feature-image img,
.brand-story-craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.brand-story-scroll-frame {
  position: relative;
  align-self: start;
  height: auto;
  aspect-ratio: 3 / 2;
}

.brand-story-scroll-image {
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: filter 0.9s ease !important;
}

.brand-story-feature-copy,
.brand-story-craft-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 8vw, 130px);
}

.brand-story-feature-copy h2,
.brand-story-craft-copy h2 {
  margin-bottom: 32px;
  color: var(--color-ink);
  font-size: clamp(38px, 4.3vw, 62px);
}

.brand-story-origin-copy h2 {
  margin-bottom: 32px;
}

.brand-story-mark {
  margin-top: 42px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-story-origin {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.brand-story-origin-copy {
  max-width: 560px;
}

.brand-story-origin-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brand-story-origin-image figure {
  aspect-ratio: 0.76;
  overflow: hidden;
}

.brand-story-origin-image figure:last-child {
  margin-top: 72px;
}

.brand-story-origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-craft {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  background: var(--color-cream);
}

.brand-story-craft-copy {
  order: -1;
}

.brand-story-services {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 10vw, 160px);
  align-items: start;
}

.brand-story-service-list {
  border-top: 1px solid var(--color-line);
}

.brand-story-service-list p {
  display: grid;
  grid-template-columns: 44px minmax(150px, 0.8fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  margin: 0;
  border-bottom: 1px solid var(--color-line);
}

.brand-story-service-list strong {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.brand-story-service-list span {
  color: var(--color-ink-soft);
  font-family: var(--font-serif);
  font-size: 21px;
}

.brand-story-service-list small {
  color: var(--color-muted);
  font-size: 12px;
}

.brand-story-services .text-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  min-height: 52px;

  margin: 36px auto 0;
  padding: 0 28px;

  border: 1px solid var(--color-ink);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.brand-story-services .text-link::after {
  display: none;
}

.brand-story-services .text-link:hover {
  background: var(--color-gold);

  border-color: var(--color-gold);

  color: var(--color-white);
}

.brand-story-service-list p {
  transition: padding-left 0.3s ease, background-color 0.3s ease;
}

.brand-story-service-list p:hover {
  padding-left: 12px;
  background: rgba(246, 241, 234, 0.6);
}

#wedding-rental,
#evening-rental {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (max-width: 900px) {
  .brand-story-hero {
    min-height: 620px;
  }

  .brand-story-intro,
  .brand-story-origin,
  .brand-story-services {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .brand-story-intro-copy {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .brand-story-feature,
  .brand-story-craft {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .brand-story-feature-image,
  .brand-story-craft-image {
    min-height: 560px;
  }

  .brand-story-craft-copy {
    order: 0;
  }
}

@media (max-width: 620px) {
  .brand-story-hero {
    height: 84svh;
    min-height: 560px;
  }

  .brand-story-hero > img {
    object-position: 62% center;
  }

  .brand-story-hero-copy {
    padding: 130px 0 76px;
  }

  .brand-story-hero-copy::before {
    content: none;
  }

  .brand-story-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .brand-story-hero-copy h1 .mobile-only {
    display: inline;
  }

  .brand-story-hero-copy > p:last-child {
    font-size: 12px;
  }

  .brand-story-feature-image,
  .brand-story-craft-image {
    min-height: 440px;
  }

  .brand-story-scroll-frame {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .brand-story-scroll-image {
    object-position: center center;
  }

  .brand-story-feature-copy,
  .brand-story-craft-copy {
    padding: 48px 24px 56px;
  }

  .brand-story-feature-copy h2,
  .brand-story-craft-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.2;
  }

  .brand-story-craft-copy > p {
    font-size: 16px;
    line-height: 1.85;
  }

  .brand-story-craft-copy p + p {
    margin-top: 16px;
  }

  .brand-story-origin-image {
    gap: 10px;
  }

  .brand-story-origin-image figure:last-child {
    margin-top: 32px;
  }

  .brand-story-service-list p {
    grid-template-columns: 36px 1fr;
    gap: 8px 12px;
    align-content: center;
    padding: 16px 0;
  }

  .brand-story-service-list small {
    grid-column: 2;
  }
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {

  :root {
    --page-width: min(
      100% - 48px,
      1180px
    );
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav > a {
    font-size: 11px;
  }

  .about-layout {
    gap: 54px;
  }

  .new-bridal-section,
  .bespoke-section,
  .reservation-section {
    padding-inline: 24px;
  }
.style-panel {
    min-height: 460px;
  }

  #selected-gowns .style-panel {
    min-height: 580px;
  }

  .bespoke-visual {
    min-height: 640px;
  }

  .choice-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 900px) {
  .choice-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

  :root {
    --header-height: 76px;

    --page-width:
      calc(100% - 40px);
  }

  .section {
    padding: 82px 0;
  }


  /* Header */

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 40px);

    min-height: var(--header-height);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;

    top: var(--header-height);
    left: 0;
    right: 0;

    display: grid;

    gap: 0;

    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    padding:
      8px 20px 22px;

    background: var(--color-white);

    border-bottom: 1px solid var(--color-line);

    box-shadow:
      0 20px 50px rgba(23, 19, 15, 0.1);

    color: var(--color-ink);

    visibility: hidden;

    transform: translateY(-10px);

    transition:
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;

    transform: translateY(0);
  }

  .site-nav > a {
    min-height: 52px;

    padding: 0;

    border-bottom: 1px solid var(--color-line);
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-reserve {
    justify-content: center;

    margin-top: 14px;

    border-color: var(--color-ink);
  }


  /* Hero */

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 40px);

    padding-left: clamp(40px, 6vw, 80px);
    padding-bottom: 106px;
  }

  .hero-content h1 {
    font-size: clamp(
      38px,
      9vw,
      62px
    );
  }


  /* About */

  .about-layout {
    grid-template-columns: 1fr;

    gap: 44px;
  }

  .about-copy {
    max-width: 720px;
  }

  .about-copy .lead {
    max-width: 640px;
  }

  .about-visual {
    max-width: 760px;
    margin-left: auto;
  }


  /* New Bridal */

  .new-bridal-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

  .new-bridal-card-large,
  .new-bridal-card:not(.new-bridal-card-large) {
    min-height: 620px;
  }


  /* Style */

  .style-panel {
    grid-template-columns: 1fr;

    min-height: 0;
  }

  .style-panel.is-reversed .style-panel-image,
  .style-panel.is-reversed .style-panel-copy {
    order: initial;
  }

  .style-panel.is-reversed .style-panel-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .style-panel.is-reversed .style-panel-copy::before {
    right: auto;
    left: 40px;
  }

  .style-panel-image {
    min-height: 440px;
  }

  #selected-gowns .style-panel-image {
    min-height: 560px;
  }

  .style-panel-copy {
    min-height: 390px;
  }


  /* Works */

  .works-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: auto;
  }

  .work-tall,
  .work-wide,
  .work-standard {
    grid-column: span 1;
    grid-row: auto;

    aspect-ratio: 4 / 5;
  }

  .work-wide {
    aspect-ratio: 4 / 5;
  }


  /* Bespoke */

  .bespoke-layout {
    grid-template-columns: 1fr;
  }

  .bespoke-copy {
    padding:
      64px 40px 52px;
  }

  .bespoke-visual {
    min-height: 620px;
  }


  /* Journal */

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card {
    min-height: auto;

    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .journal-card:last-child {
    border-bottom: 0;
  }


  /* Manifesto */

  .manifesto-section {
    min-height: 540px;
  }


  /* Reservation */

  .reservation-layout {
    grid-template-columns: 1fr;

    gap: 52px;
  }

  .reservation-intro {
    max-width: 760px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns:
      1fr 1fr;

    gap: 48px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 620px) {

  :root {
    --page-width:
      calc(100% - 32px);
  }

  .section {
    padding: 68px 0;
  }


  /* Header */

  .header-inner {
    width: calc(100% - 32px);
  }
  .brand-logo {
    width: 118px;
  }


  /* Hero */

  .hero {
    height: 84svh;
    min-height: 560px;
  }

  .hero-media video {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.62),
        rgba(0, 0, 0, 0.08) 65%,
        rgba(0, 0, 0, 0.1)
      );
  }

  .hero-content {
    width: calc(100% - 32px);

    padding-left: 24px;
    padding-bottom: 82px;
  }

  .hero-content::before {
    content: none;
  }

  .hero-content h1 {
    font-size: clamp(
      32px,
      9.5vw,
      48px
    );

    line-height: 1.15;
  }

  .hero-cta {
    min-height: 44px;

    margin-top: 24px;

    padding-inline: 18px;

    font-size: 9px;
  }

  .hero-scroll {
    bottom: 18px;
  }


  /* Shared Heading */

  .section-intro h2,
  .works-heading h2 {
    font-size: clamp(
      40px,
      12vw,
      58px
    );
  }

  .section-intro > p:last-child {
    margin-top: 16px;

    font-size: 16px;
  }


  /* About */

  .about-layout {
    gap: 38px;
  }

  .about-copy h2 {
    font-size: clamp(
      42px,
      12vw,
      60px
    );
  }

  .about-copy .lead {
    margin-top: 24px;

    font-size: 16px;
  }

  .about-copy > p:not(.eyebrow):not(.lead) {
    font-size: 16px;
  }

  .about-visual {
    width: 100%;
  }


  /* New Bridal */

  .new-bridal-section,
  .bespoke-section,
  .reservation-section {
    padding-inline: 16px;
  }

  .new-bridal-grid {
     grid-template-columns: 1fr;

    gap: 48px;

    margin-top: 42px;
  }

  .new-bridal-rail-wrap {
    width: 100%;
    margin-left: 0;
  }

   .new-bridal-card-large figure,
  .new-bridal-card:not(.new-bridal-card-large) figure {
    aspect-ratio: 4 / 5;
  }
  .new-bridal-card-large,
  .new-bridal-card:not(.new-bridal-card-large) {
    min-height: 510px;
  }

  .new-bridal-card .collection-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding-top: 16px;
  }

  .new-bridal-card .collection-caption h3 {
    font-size: 28px;
  }


  /* Style */

  .style-nav {
    margin-right: -16px;
    margin-left: -16px;
  }

  .style-tab {
    min-height: 58px;

    padding-inline: 20px;

    font-size: 12px;
  }

  .style-panel-image {
    min-height: 480px;
  }

  .style-panel-copy {
    min-height: auto;

    padding:
      44px 26px 50px;
  }

  .style-panel-copy h3 {
    font-size: 42px;
  }

  .style-panel-copy p {
    font-size: 14px;
  }


  /* Works */

  .works-heading {
    display: block;

    margin-bottom: 36px;
  }

  .works-heading .text-link {
    margin-top: 22px;
  }

  .works-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .work-tall,
  .work-wide,
  .work-standard {
    aspect-ratio: 4 / 5;
  }


  /* Bespoke */

  .bespoke-copy {
    padding:
      56px 26px 48px;
  }

  .bespoke-copy h2 {
    font-size: 45px;
  }

  .bespoke-copy .lead {
    font-size: 31px;
  }

  .bespoke-points li {
    grid-template-columns:
      32px
      1fr;

    gap: 4px 12px;
  }

  .bespoke-points strong {
    grid-column: 2;
  }

  .bespoke-points p {
    grid-column: 2;
  }

  .bespoke-points li > span {
    grid-row: span 2;
  }

  .bespoke-visual {
    min-height: 500px;
  }


  /* Journal */

  .journal-card {
    min-height: 0;

    padding:
      34px 24px;
  }

  .journal-card h3 {
    font-size: 31px;
  }

  .journal-card p {
    font-size: 16px;
  }


  /* Manifesto */

  .manifesto-section {
    min-height: 500px;
  }


  /* Reservation */

  .reservation-layout {
    gap: 42px;
  }

  .reservation-intro h2 {
    font-size: clamp(
      48px,
      13vw,
      65px
    );
  }

  .reservation-form {
    padding:
      26px 20px;
  }

  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }


  /* Footer */

  .footer-main {
    width: calc(100% - 32px);

    grid-template-columns: 1fr;

    gap: 40px;

    padding-top: 58px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    width: calc(100% - 32px);
  }

}


/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* =========================================================
   GOWN SERIES
   禮服系列
========================================================= */

.gown-series-section {
  width: 100%;

  margin: 0;

  padding: 0;

  background: #f5f0e9;

  color: #302a26;
}


/* =========================================================
   01 / INTRO
   禮服系列介紹區
========================================================= */

.gown-series-intro-wrap {
  width: 100%;

  padding:
    clamp(100px, 10vw, 160px)
    5vw
    clamp(110px, 12vw, 180px);

  background: #f5f0e9;
}


.gown-series-intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 500px);

  align-items: center;

  gap: clamp(60px, 9vw, 140px);

  width: min(100%, 1380px);

  margin: 0 auto;
}


/* =========================================================
   Intro / 左側文字
========================================================= */

.gown-series-intro-copy {
  min-width: 0;

  max-width: 620px;
}


.gown-series-index {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom:
    clamp(50px, 6vw, 80px);
}


.gown-series-index span {
  color: #a4856d;

  font-size: 16px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.18em;
}


.gown-series-index::after {
  content: "";

  width: 46px;
  height: 1px;

  background:
    rgba(48, 42, 38, 0.22);
}


/* =========================================================
   English Eyebrow
========================================================= */

.gown-series-eyebrow {
  margin: 0 0 18px;

  color: #a4856d;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.28em;
}


/* =========================================================
   主標題
========================================================= */

.gown-series-intro-copy h2 {
  margin: 0;

  color: #302a26;

  font-family:
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size:
    clamp(58px, 6vw, 92px);

  font-weight: 300;

  line-height: 1.08;

  letter-spacing: 0.08em;
}


/* =========================================================
   Intro Description
========================================================= */

.gown-series-intro-copy-text {
  max-width: 500px;

  margin:
    clamp(34px, 4vw, 54px)
    0
    0;

  color: #766b62;

  font-size: 16px;

  line-height: 2.15;

  letter-spacing: 0.04em;
}


/* =========================================================
   Intro / 右側直式影片
========================================================= */

.gown-series-heading-media {
  position: relative;

  width: 100%;

  max-width: 500px;

  margin: 0;

  justify-self: end;

  overflow: hidden;

  background: #e5ddd4;

  aspect-ratio: 9 / 16;
}


.gown-series-heading-video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  background: #e5ddd4;
}


/* =========================================================
   02 / CATEGORY BLOCK
   每一個分類都是獨立背景區塊
========================================================= */

.gown-series-block {
  width: 100%;

  padding:
    clamp(100px, 10vw, 160px)
    5vw;

  background: #ffffff;
}


.gown-series-block-alt {
  background: #f7f3ee;
}


.gown-series-block-bespoke {
  background: var(--color-cream);
}

.gown-series-catalog-section {
  padding: 36px 16px 64px;
  background: var(--color-white);
}

.gown-series-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 10px;
  width: min(100%, 1380px);
  margin: 0 auto;
}

.gown-series-filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.gown-series-filter {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0 0 24px;
  padding-bottom: 16px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(48, 42, 38, 0.08);
  scrollbar-width: none;
}

@media (max-width: 699px) {
  .gown-series-filter {
    width: auto;
    margin-inline: -16px;
    padding-inline: 22px;
  }
}

.gown-series-filter::-webkit-scrollbar {
  display: none;
}

.gown-series-filter label {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  color: rgba(48, 42, 38, 0.45);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.35s ease, background-color 0.35s ease;
}

.gown-series-filter label:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background: rgba(48, 42, 38, 0.16);
  transform: translateY(-50%);
}

.gown-series-filter label span {
  color: #a4856d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.75;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.gown-series-filter label:hover {
  color: #302a26;
}

.gown-series-filter label:hover span {
  opacity: 1;
}

#bridal-shape-all:checked ~ .gown-series-filter label[for="bridal-shape-all"],
#bridal-shape-a-line:checked ~ .gown-series-filter label[for="bridal-shape-a-line"],
#bridal-shape-mermaid:checked ~ .gown-series-filter label[for="bridal-shape-mermaid"],
#bridal-shape-ball-gown:checked ~ .gown-series-filter label[for="bridal-shape-ball-gown"],
#evening-style-all:checked ~ .gown-series-filter label[for="evening-style-all"],
#evening-style-a-line:checked ~ .gown-series-filter label[for="evening-style-a-line"],
#evening-style-mermaid:checked ~ .gown-series-filter label[for="evening-style-mermaid"],
#evening-style-ball-gown:checked ~ .gown-series-filter label[for="evening-style-ball-gown"] {
  background: #8a6d4d;
  color: #ffffff;
}

#bridal-shape-all:checked ~ .gown-series-filter label[for="bridal-shape-all"] span,
#bridal-shape-a-line:checked ~ .gown-series-filter label[for="bridal-shape-a-line"] span,
#bridal-shape-mermaid:checked ~ .gown-series-filter label[for="bridal-shape-mermaid"] span,
#bridal-shape-ball-gown:checked ~ .gown-series-filter label[for="bridal-shape-ball-gown"] span,
#evening-style-all:checked ~ .gown-series-filter label[for="evening-style-all"] span,
#evening-style-a-line:checked ~ .gown-series-filter label[for="evening-style-a-line"] span,
#evening-style-mermaid:checked ~ .gown-series-filter label[for="evening-style-mermaid"] span,
#evening-style-ball-gown:checked ~ .gown-series-filter label[for="evening-style-ball-gown"] span {
  color: #ffffff;
  opacity: 0.85;
}

#bridal-shape-all:checked ~ .gown-series-filter label[for="bridal-shape-all"]::before,
#bridal-shape-a-line:checked ~ .gown-series-filter label[for="bridal-shape-a-line"]::before,
#bridal-shape-mermaid:checked ~ .gown-series-filter label[for="bridal-shape-mermaid"]::before,
#bridal-shape-ball-gown:checked ~ .gown-series-filter label[for="bridal-shape-ball-gown"]::before,
#bridal-shape-all:checked ~ .gown-series-filter label[for="bridal-shape-all"] + label::before,
#bridal-shape-a-line:checked ~ .gown-series-filter label[for="bridal-shape-a-line"] + label::before,
#bridal-shape-mermaid:checked ~ .gown-series-filter label[for="bridal-shape-mermaid"] + label::before,
#bridal-shape-ball-gown:checked ~ .gown-series-filter label[for="bridal-shape-ball-gown"] + label::before,
#evening-style-all:checked ~ .gown-series-filter label[for="evening-style-all"]::before,
#evening-style-a-line:checked ~ .gown-series-filter label[for="evening-style-a-line"]::before,
#evening-style-mermaid:checked ~ .gown-series-filter label[for="evening-style-mermaid"]::before,
#evening-style-ball-gown:checked ~ .gown-series-filter label[for="evening-style-ball-gown"]::before,
#evening-style-all:checked ~ .gown-series-filter label[for="evening-style-all"] + label::before,
#evening-style-a-line:checked ~ .gown-series-filter label[for="evening-style-a-line"] + label::before,
#evening-style-mermaid:checked ~ .gown-series-filter label[for="evening-style-mermaid"] + label::before,
#evening-style-ball-gown:checked ~ .gown-series-filter label[for="evening-style-ball-gown"] + label::before {
  display: none;
}

#bridal-shape-a-line:checked ~ .gown-series-block:not(.is-a-line) .gown-series-card,
#bridal-shape-mermaid:checked ~ .gown-series-block:not(.is-mermaid) .gown-series-card,
#bridal-shape-ball-gown:checked ~ .gown-series-block:not(.is-ball-gown) .gown-series-card {
  display: none;
}

#evening-style-a-line:checked ~ .gown-series-block:not(.is-a-line) .gown-series-card,
#evening-style-mermaid:checked ~ .gown-series-block:not(.is-mermaid) .gown-series-card,
#evening-style-ball-gown:checked ~ .gown-series-block:not(.is-ball-gown) .gown-series-card {
  display: none;
}

.gown-series-catalog .gown-series-block,
.gown-series-catalog .gown-series-category,
.gown-series-catalog .gown-series-cards {
  display: contents;
}

.gown-series-catalog .gown-series-category-heading {
  display: none;
}

.gown-series-section .gown-series-catalog .gown-series-card.reveal {
  opacity: 1;
  transform: none;
}

.gown-series-section .gown-series-catalog .gown-series-card.reveal:hover {
  transform: translateY(-5px);
}

@media (min-width: 700px) {
  .gown-series-catalog-section {
    padding: 46px 4vw 88px;
  }

  .gown-series-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 14px;
  }

  .gown-series-filter {
    margin-bottom: 34px;
  }
}

@media (min-width: 1000px) {
  .gown-series-catalog-section {
    padding: 56px 4vw 120px;
  }

  .gown-series-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px 18px;
  }
}


/* =========================================================
   Category 內容寬度
========================================================= */

.gown-series-category {
  width: min(100%, 1380px);

  margin: 0 auto;

  padding: 0;

  border-top:
    1px solid
    rgba(48, 42, 38, 0.16);
}


/* =========================================================
   Category Heading
========================================================= */

.gown-series-category-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;

  padding-top: 32px;

  margin-bottom:
    clamp(36px, 4vw, 54px);
}


.gown-series-category-number {
  margin: 0 0 12px;

  color: #a4856d;

  font-size: 8px;

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.23em;
}


.gown-series-category-heading h3 {
  margin: 0;

  color: #302a26;

  font-family:
    "Cormorant Garamond",
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size:
    clamp(38px, 4vw, 56px);

  font-weight: 300;

  line-height: 1.15;

  letter-spacing: 0.08em;
}


/* =========================================================
   Category Link
========================================================= */

.gown-series-category-link {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  flex-shrink: 0;

  padding-bottom: 9px;

  border-bottom:
    1px solid
    rgba(48, 42, 38, 0.42);

  color: #302a26;

  font-size: 8px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.2em;

  text-decoration: none;

  transition:
    gap 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}


.gown-series-category-link span {
  font-size: 14px;

  line-height: 1;
}


.gown-series-category-link:hover {
  gap: 23px;

  color: #a4856d;
}


/* =========================================================
   Cards
   三張統一尺寸
========================================================= */

.gown-series-cards {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(18px, 2.2vw, 32px);

  align-items: start;
}


.gown-series-card {
  display: block;

  min-width: 0;

  color: inherit;

  text-decoration: none;

  opacity: 1;

  transition:
    transform
    0.5s
    cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.gown-series-section .gown-series-catalog .gown-series-card.is-fading-out {
  opacity: 0;
}


.gown-series-card:hover {
  transform: translateY(-5px);
}

.gown-series-card-link {
  display: block;

  width: 100%;

  color: inherit;

  text-decoration: none;

  cursor: default;
}
.gown-series-card-link:focus-visible {
  outline: 1px solid #a4856d;
  outline-offset: 6px;
}
/* =========================================================
   Card Figure
========================================================= */

.gown-series-card-figure {
  --gown-frame-gap: 3px;

  position: relative;

  width: 100%;

  aspect-ratio: 2 / 3;

  margin: 0;

  overflow: visible;

  background: #e8dfd6;

  cursor: zoom-in;
}

.gown-series-card-figure::after {
  content: "";

  position: absolute;
  inset: calc(var(--gown-frame-gap) * -1);
  z-index: 2;

  border: 1px solid var(--color-line);
  box-shadow: 0 0 0 0 rgba(23, 19, 15, 0);

  transform: scale(1);
  transform-origin: center;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.6s ease,
    box-shadow 0.6s ease;

  pointer-events: none;
}

.gown-series-card-link:hover .gown-series-card-figure::after,
.gown-series-card-link:focus-visible .gown-series-card-figure::after {
  border-color: var(--color-line);
  box-shadow: 0 0 22px 3px rgba(23, 19, 15, 0.2);
  transform: scale(1.015);
}

@media (min-width: 700px) {
  .gown-series-card-figure {
    --gown-frame-gap: 4px;
  }
}

@media (min-width: 1000px) {
  .gown-series-card-figure {
    --gown-frame-gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gown-series-card-figure::after {
    transition-duration: 0.01ms;
  }
}


/* =========================================================
   Card Image
========================================================= */

.gown-series-card-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}

.gown-series-card-alt {
  position: absolute;
  inset: 0;

  opacity: 0;

  transition: opacity 0.6s ease;
}

.gown-series-card-link:hover .gown-series-card-alt,
.gown-series-card-link:focus-visible .gown-series-card-alt {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gown-series-card-alt {
    transition-duration: 0.01ms;
  }
}


/* =========================================================
   Card Meta
========================================================= */

.gown-series-card-meta {
  padding-top: 18px;
}


.gown-series-card-meta h4 {
  margin: 0;

  color: #302a26;

  font-family:
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size:
    clamp(16px, 1.4vw, 19px);

  font-weight: 400;

  line-height: 1.35;

  letter-spacing: 0.06em;
}


/* =========================================================
   Reveal
========================================================= */

.gown-series-section
.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
      cubic-bezier(0.22, 1, 0.36, 1);
}


.gown-series-section
.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}
/*------------------        */
/* =========================================================
   Card Index
   圖片左上角編號
========================================================= */

.gown-series-card-index {
  position: absolute;
  top: 0;
  left: 0;

  z-index: 2;

  padding: 5px 9px;

  background: rgba(48, 42, 38, 0.78);

  color: #f5f0e9;

  font-family:
    "Noto Sans TC",
    system-ui,
    sans-serif;

  font-size: 9px;
  font-weight: 600;

  line-height: 1;
  letter-spacing: 0.06em;
}


/* =========================================================
   Card View Cue
   hover 才出現的檢視提示
========================================================= */

.gown-series-card-view {
  position: absolute;
  right: 14px;
  bottom: 14px;

  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 14px;

  background: rgba(245, 240, 233, 0.94);

  color: #302a26;

  font-size: 7px;
  font-weight: 700;

  line-height: 1;
  letter-spacing: 0.22em;

  opacity: 0;

  transform: translateY(8px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gown-series-card-view em {
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.gown-series-card-link:hover .gown-series-card-view,
.gown-series-card-link:focus-visible .gown-series-card-view {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   Card Spec
   標題下的款式標示
========================================================= */

.gown-series-card-spec {
  margin: 5px 0 0;

  color: #8a7f75;

  font-size: 13px;

  line-height: 1.5;
  letter-spacing: 0.03em;
}


/* =========================================================
   Card Meta / 底線收合
========================================================= */

.gown-series-card-meta h4 {
  position: relative;

  display: inline-block;

  padding-bottom: 3px;
}

.gown-series-card-meta h4::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right center;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gown-series-card-link:hover .gown-series-card-meta h4::after,
.gown-series-card-link:focus-visible .gown-series-card-meta h4::after {
  transform: scaleX(1);
  transform-origin: left center;
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 600px) {

  .gown-series-card-index {
    padding: 4px 7px;
    font-size: 8px;
  }

  .gown-series-card-view {
    display: none;
  }

  .gown-series-card-spec {
    margin-top: 5px;
    font-size: 12px;
  }

}


/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gown-series-card-view,
  .gown-series-card-meta h4::after {
    transition-duration: 0.01ms;
  }

}
/* =========================================================
   Bridal Scroll View
   Scroll-driven image pan
========================================================= */

/* =========================================================
   BRIDAL SPLIT
   左文字 / 右照片，照片隨捲動平移
========================================================= */

/* =========================================================
   BRIDAL SPLIT
   左文字 / 右照片，照片隨捲動平移
========================================================= */

.bridal-split {
  width: 100%;

  background: #ebebeb;
}


/* ---------- Sticky Stage ---------- */

.bridal-split-stage {
  display: flex;
  flex-direction: column;

  width: 100%;
}


/* ---------- 左側文字 ---------- */

.bridal-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 48px 24px;

  background: #ebebeb;
}

.bridal-split-eyebrow {
  margin: 0 0 22px;

  color: #a4856d;

  font-size: 9px;
  font-weight: 700;

  line-height: 1.4;
  letter-spacing: 0.28em;
}

.bridal-split-copy h2 {
  margin: 0;

  color: #302a26;

  font-family:
    "Noto Serif TC",
    "PingFang TC",
    "Microsoft JhengHei",
    serif;

  font-size: clamp(44px, 12vw, 60px);
  font-weight: 300;

  line-height: 1.05;
  letter-spacing: 0.08em;
}

.bridal-split-description {
  margin: 30px 0 0;

  color: #756b63;

  font-size: 16px;

  line-height: 2.2;
  letter-spacing: 0.05em;
}

.bridal-split-index {
  display: none;

  margin-top: 42px;

  color: #a4856d;

  font-size: 8px;
  font-weight: 700;

  line-height: 1;
  letter-spacing: 0.22em;
}


/* ---------- 右側視窗 ---------- */

.bridal-split-frame {
  order: -1;

  position: relative;

  width: 100%;

  margin: 0;

  overflow: hidden;

  background: #dfe3e6;

  aspect-ratio: 4 / 5;
}

.bridal-split-image {
  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;
  max-width: none;

  margin: 0;

  object-fit: cover;
  object-position: center top;

  transform: translate3d(0, 0, 0);
  will-change: transform;

  transition: none;
}


/* =========================================================
   Bridal Split / Tablet　≥ 700px
   這裡才啟用 sticky
========================================================= */

@media (min-width: 700px) {

  .bridal-split {
    min-height: 0;
  }

  .bridal-split-stage {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: stretch;

    height: auto;
    min-height: 0;
  }

  .bridal-split-copy {
    padding: 48px clamp(36px, 5vw, 72px);
  }

  .bridal-split-copy h2 {
    font-size: clamp(52px, 6vw, 72px);
  }

  .bridal-split-index {
    display: inline-block;
  }

  .bridal-split-frame {
    order: 0;

    height: auto;

    aspect-ratio: 1 / 1;
  }

  .bridal-split-image {
    height: 100%;
  }

}


/* =========================================================
   Bridal Split / Desktop　≥ 1000px
========================================================= */

@media (min-width: 1000px) {

  .bridal-split {
    min-height: 0;
  }

  .bridal-split-stage {
    height: auto;
    min-height: 0;
  }

  .bridal-split-copy {
    padding: 48px clamp(56px, 7vw, 110px);
  }

  .bridal-split-copy h2 {
    font-size: clamp(64px, 5vw, 86px);
  }

  .bridal-split-image {
    height: 100%;
  }

}


/* =========================================================
   Bridal Split / Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .bridal-split {
    min-height: auto;
  }

  .bridal-split-stage {
    position: relative;
    height: auto;
  }

  .bridal-split-image {
    height: 100%;
  }

}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

  .gown-series-intro-wrap {
    padding:
      90px
      5vw
      110px;
  }


  .gown-series-intro {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(260px, 380px);

    gap: 50px;
  }


  .gown-series-intro-copy {
    max-width: 520px;
  }


  .gown-series-intro-copy h2 {
    font-size:
      clamp(52px, 7vw, 72px);
  }


  .gown-series-heading-media {
    max-width: 380px;
  }


  .gown-series-block {
    padding:
      90px
      5vw;
  }


  .gown-series-cards {
    gap: 16px;
  }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 600px) {

  .gown-series-intro-wrap {
    padding:
      76px
      20px
      90px;
  }


  .gown-series-intro {
    display: block;

    width: 100%;
  }


  .gown-series-intro-copy {
    max-width: none;
  }


  .gown-series-index {
    margin-bottom: 38px;
  }


  .gown-series-eyebrow {
    margin-bottom: 14px;

    font-size: 8px;
  }


  .gown-series-intro-copy h2 {
    font-size:
      clamp(48px, 13vw, 64px);

    line-height: 1.08;
  }


  .gown-series-intro-copy-text {
    max-width: none;

    margin-top: 28px;

    font-size: 16px;

    line-height: 2;
  }


  .gown-series-heading-media {
    width: min(100%, 360px);

    margin:
      48px
      auto
      0;
  }


  .gown-series-block {
    padding:
      76px
      20px
      90px;
  }


  .gown-series-category {
    width: 100%;
  }


  .gown-series-category-heading {
    align-items: flex-end;

    gap: 20px;

    margin-bottom: 30px;
  }


  .gown-series-category-number {
    margin-bottom: 9px;

    font-size: 7px;
  }


  .gown-series-category-heading h3 {
    font-size: 34px;
  }


  .gown-series-category-link {
    gap: 9px;

    padding-bottom: 7px;

    font-size: 7px;
  }


  .gown-series-category-link span {
    font-size: 12px;
  }


  .gown-series-cards {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }

  .gown-series-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 76px 0 90px;
  }

  .gown-series-filter {
    margin-bottom: 16px;
  }


  .gown-series-card-figure {
    aspect-ratio: 2 / 3;
  }


  .gown-series-card-meta {
    padding-top: 13px;
  }


  .gown-series-card-meta h4 {
    font-size: 14px;
  }


  .gown-series-card:hover {
    transform: none;
  }

  .gown-series-section .gown-series-catalog .gown-series-card.reveal:hover {
    transform: none;
  }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 400px) {

  .gown-series-intro-wrap {
    padding:
      64px
      16px
      76px;
  }


  .gown-series-block {
    padding:
      64px
      16px
      76px;
  }

  .gown-series-catalog {
    padding: 64px 16px 76px;
  }


  .gown-series-intro-copy h2 {
    font-size: 46px;
  }


  .gown-series-category-heading h3 {
    font-size: 31px;
  }


  .gown-series-cards {
    gap: 10px;
  }

}

/* Rental Page / restored bespoke sections */
.rental-page .bespoke-information {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(72px, 9vw, 132px);
  padding: clamp(54px, 7vw, 96px) clamp(24px, 5vw, 72px);
  background: var(--color-cream);
}

.rental-page .bespoke-information-visual {
  position: relative;
  align-self: center;
  min-height: 520px;
  margin: 0;
  padding: 0 12% 54px 0;
}

.rental-page .bespoke-information-visual div {
  position: relative;
  width: 82%;
  height: 430px;
  overflow: hidden;
  background: #ddd0c8;
}

.rental-page .bespoke-information-visual div:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 240px;
  border: 10px solid var(--color-cream);
}

.rental-page .bespoke-information-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-page .bespoke-information-visual figcaption {
  position: absolute;
  left: 0;
  bottom: 10px;
  color: var(--color-gold);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.rental-page .bespoke-information-copy {
  min-width: 0;
}

.rental-page .bespoke-information-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-line);
}

.rental-page .bespoke-information-heading h2,
.rental-page .bespoke-process-editorial-intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1.14;
}

.rental-page .bespoke-information-heading h2 em,
.rental-page .bespoke-process-editorial-intro h2 em {
  font-style: normal;
}

.rental-page .bespoke-information-content {
  display: block;
}

.rental-page .bespoke-information-block {
  padding-top: 24px;
}

.rental-page .bespoke-information-block + .bespoke-information-block {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
}

.rental-page .bespoke-information-number {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.rental-page .bespoke-information-block h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
}

.rental-page .bespoke-information-block > p:not(.bespoke-information-number):not(.bespoke-information-note),
.rental-page .bespoke-information-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.025em;
}

.rental-page .bespoke-information-note {
  padding-top: 14px;
  border-top: 1px solid rgba(168, 135, 93, 0.45);
  color: var(--color-gold);
}

.rental-page .bespoke-process-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(72px, 9vw, 132px);
  padding: clamp(54px, 7vw, 96px) clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--color-line);
  background: var(--color-ivory);
}

.rental-page .bespoke-process-editorial-intro > p:last-child {
  max-width: 340px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 2;
}

.rental-page .bespoke-process-editorial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bespoke-step;
}

.rental-page .bespoke-process-editorial-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--color-line);
  counter-increment: bespoke-step;
}

.rental-page .bespoke-process-editorial-list li::before {
  content: "0" counter(bespoke-step);
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.rental-page .bespoke-process-editorial-list strong {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
}

.rental-page .bespoke-process-editorial-list span {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
}

/* Rental Page / restored page layout */
.rental-page {
  --rental-ink: #2b2724;
  --rental-ivory: #f7f3ee;
  --rental-surface: #fffdfb;
  --rental-rose: #ead6d4;
  --rental-gold: #aa876d;
  overflow-x: clip;
  background: var(--rental-ivory);
}

.rental-hero {
  display: flex;
  height: 100svh;
  min-height: 680px;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(15, 14, 13, 0.45), rgba(15, 14, 13, 0.12)),
    url("./img/NW-BANNER1.png") center / cover no-repeat;
  text-align: left;
}

.rental-hero-copy {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  width: min(1380px, calc(100% - 64px));
  min-height: 83svh;

  margin-inline: auto;

  padding-left: clamp(48px, 8vw, 150px);
  padding-bottom: clamp(110px, 13vh, 160px);
}

.rental-hero-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 92px;
  background: var(--color-gold-light);
  opacity: 0.8;
}

.rental-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.rental-page .rental-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.rental-page .rental-hero h1 em {
  font-style: normal;
}

.rental-hero-copy > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.rental-content {
  width: var(--page-width);
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 132px);
  background: var(--rental-ivory);
}

.rental-content > .section-intro {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.rental-content > .section-intro h2,
.rental-bespoke-copy h2,
.rental-notes h3 {
  color: var(--rental-ink);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.rental-visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--rental-ink);
}

.rental-visual-gallery figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #ddd0c8;
}

.rental-visual-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
  margin-bottom: clamp(84px, 11vw, 150px);
}

.rental-opening .section-intro {
  max-width: 520px;
  margin: 0;
}

.rental-opening .section-intro h2 {
  margin: 0;
  color: var(--rental-ink);
  font-family: "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.04em;
}

.rental-page .rental-bespoke-copy h2,
.rental-page .custom-guide-copy h2,
.rental-page .custom-process-heading h2,
.rental-page .rental-notes h3 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  font-weight: 400;
}

.rental-page h1,
.rental-page h2,
.rental-page h3 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
}

.rental-opening .section-intro h2 em {
  font-style: normal;
}

.rental-opening .section-intro > p:last-of-type {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.035em;
}

.rental-opening-mark {
  display: block;
  margin-top: 38px;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 135, 93, 0.5);
  color: var(--rental-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.rental-opening .rental-visual-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(220px, 20vw));
  gap: 8px;
  padding: 0;
  background: var(--color-ivory);
}

.rental-opening .rental-visual-gallery figure {
  min-height: 0;
  aspect-ratio: auto;
}

.rental-opening .rental-visual-gallery figure:first-child {
  grid-row: 1 / span 2;
}

.rental-opening .rental-visual-gallery figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.rental-opening .rental-visual-gallery figure:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.rental-opening .rental-visual-gallery img,
.rental-opening .rental-visual-gallery figure {
  border: 0;
}

.rental-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 2px;
  background: var(--rental-ink);
}

.rental-plan-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--rental-surface);
}

.rental-plan-card:nth-child(2) {
  background: var(--rental-rose);
}

.rental-plan-card:nth-child(3) {
  background: var(--color-cream);
}

.rental-plan-card > span {
  color: var(--rental-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.rental-plan-card h3 {
  margin: 28px 0 0;
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
}

.rental-plan-card p {
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.9;
}

.rental-plan-card-price {
  display: block;
  margin-top: 24px;
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
}

.rental-plan-card .text-link {
  display: inline-flex;
  margin-top: 24px;
}

.rental-price-reference {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(2px, 0.3vw, 6px);
  padding: clamp(42px, 5vw, 68px);
  background: var(--rental-ink);
  color: var(--rental-ivory);
}

.rental-price-reference-heading h3 {
  margin: 0;
  color: var(--rental-ivory);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}

.rental-price-reference-heading > p:last-child {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(247, 243, 238, 0.7);
  font-size: 13px;
  line-height: 1.9;
}

.rental-price-list p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 243, 238, 0.22);
  color: rgba(247, 243, 238, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.rental-price-list strong {
  flex: 0 0 auto;
  color: #d8b79c;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
}

.rental-bespoke-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(48px, 6vw, 78px) clamp(24px, 5vw, 68px);
  border-top: 1px solid rgba(170, 135, 109, 0.58);
  background: var(--rental-rose);
}

.rental-bespoke-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.1;
}

.rental-bespoke-lead {
  margin: 26px 0 0;
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
}

.rental-bespoke-copy > p:not(.eyebrow):not(.rental-bespoke-lead) {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2;
}

.rental-bespoke-copy .text-link {
  display: inline-flex;
  margin-top: 30px;
}

.rental-bespoke-details {
  border-top: 1px solid rgba(43, 39, 36, 0.28);
}

.rental-bespoke-process {
  display: grid;
  grid-template-columns: 42px 150px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(43, 39, 36, 0.18);
}

.rental-bespoke-process > span {
  color: var(--rental-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.rental-bespoke-process strong {
  color: var(--rental-ink);
  font-size: 13px;
}

.rental-bespoke-process p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.rental-bespoke-prices {
  margin-top: 36px;
  padding: 26px 28px;
  background: rgba(255, 253, 251, 0.62);
}

.rental-bespoke-prices h3 {
  margin: 0 0 16px;
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
}

.rental-bespoke-prices p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 15px;
}

.rental-bespoke-prices strong {
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
}

/* Rental Page / bespoke reference panel */
.rental-page .rental-bespoke-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
  padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 72px) 0;
  background: var(--color-white);
  border: 1px solid rgba(23, 19, 15, 0.1);
  box-shadow: 0 24px 60px rgba(23, 19, 15, 0.1);
}

.rental-page .rental-bespoke-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0;
}

.rental-page .rental-bespoke-copy h2 {
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.05;
}

.rental-page .rental-bespoke-feature-image {
  position: relative;
  width: calc(100% + clamp(28px, 5vw, 72px));
  height: clamp(260px, 29vw, 390px);
  margin: clamp(44px, 6vw, 76px) 0 0;
  overflow: hidden;
  background: #ddd0c8;
  box-shadow: 0 18px 36px rgba(23, 19, 15, 0.14);
}

.rental-page .rental-bespoke-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.rental-page .rental-bespoke-feature-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.rental-page .rental-bespoke-details {
  align-self: start;
  padding-top: 12px;
}

.rental-page .rental-bespoke-process {
  grid-template-columns: 42px minmax(130px, 0.65fr) minmax(0, 1fr);
  padding: 20px 0;
  border-bottom-color: rgba(23, 19, 15, 0.14);
}

.rental-page .rental-bespoke-prices {
  margin-top: 34px;
  padding: 28px 30px;
  background: #f4f0eb;
  border: 1px solid rgba(23, 19, 15, 0.08);
  box-shadow: 0 12px 28px rgba(23, 19, 15, 0.08);
}

.rental-page .rental-bespoke-prices h3 {
  font-size: 27px;
}

@media (max-width: 700px) {
  .rental-page .rental-bespoke-section {
    padding: 44px 22px 0;
  }

  .rental-page .rental-bespoke-copy h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .rental-page .rental-bespoke-feature-image {
    width: 100%;
    height: 280px;
    margin-top: 42px;
  }

  .rental-page .rental-bespoke-details {
    margin-top: 46px;
    padding-bottom: 44px;
  }

  .rental-page .rental-bespoke-process {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .rental-page .rental-bespoke-process p {
    grid-column: 2;
  }
}

@media (min-width: 701px) {
  .rental-page .rental-bespoke-process > span,
  .rental-page .rental-bespoke-process strong,
  .rental-page .rental-bespoke-prices p > span,
  .rental-page .rental-bespoke-prices p > strong,
  .rental-page .custom-process-list strong,
  .rental-page .rental-notes-steps strong {
    white-space: nowrap;
  }
}

/* =========================================================
   Homepage Series Direction
========================================================= */

@media (min-width: 901px) {
  #style .style-panel.is-reversed .style-panel-image,
  #style .style-panel.is-reversed .style-panel-copy {
    order: initial;
  }

  #style .style-panel.is-reversed .style-panel-image {
    order: 2;
  }

  #style .style-panel.is-reversed .style-panel-copy {
    order: 1;
  }

  #selected-gowns .style-panel .style-panel-image,
  #selected-gowns .style-panel .style-panel-copy {
    order: initial;
  }
}

/* Rental Page / custom gallery lightbox */
.custom-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 48px 80px 92px;
  background: radial-gradient(ellipse at center, rgba(36, 29, 22, 0.94) 0%, rgba(14, 11, 9, 0.97) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.custom-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.custom-gallery-lightbox figure {
  max-width: min(1100px, 88vw);
  max-height: 78vh;
  margin: 0;
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-gallery-lightbox.is-open figure {
  transform: scale(1);
}

.custom-gallery-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(246, 241, 234, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.custom-gallery-lightbox figure img.is-fading {
  opacity: 0;
  transform: scale(0.98);
}

.custom-gallery-lightbox figcaption {
  margin-top: 16px;
  color: rgba(246, 241, 234, 0.6);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.custom-gallery-close,
.custom-gallery-prev,
.custom-gallery-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 234, 0.32);
  border-radius: 50%;
  background: rgba(246, 241, 234, 0.06);
  color: var(--color-ivory);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.custom-gallery-close {
  top: 20px;
  right: 20px;
  font-size: 20px;
}

.custom-gallery-prev,
.custom-gallery-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.custom-gallery-prev {
  left: 20px;
}

.custom-gallery-next {
  right: 20px;
}

.custom-gallery-close:hover,
.custom-gallery-close:focus-visible {
  border-color: var(--color-gold-light);
  background: rgba(246, 241, 234, 0.14);
  transform: rotate(90deg);
}

.custom-gallery-prev:hover,
.custom-gallery-prev:focus-visible {
  border-color: var(--color-gold-light);
  background: rgba(246, 241, 234, 0.14);
  transform: translateY(-50%) translateX(-3px);
}

.custom-gallery-next:hover,
.custom-gallery-next:focus-visible {
  border-color: var(--color-gold-light);
  background: rgba(246, 241, 234, 0.14);
  transform: translateY(-50%) translateX(3px);
}

.custom-gallery-thumbs {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 10px;
  max-width: calc(100vw - 120px);
  transform: translateX(-50%);
  overflow-x: auto;
  scrollbar-width: none;
}

.custom-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.custom-gallery-thumbs button {
  width: 52px;
  height: 64px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(246, 241, 234, 0.28);
  border-radius: 3px;
  overflow: hidden;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.custom-gallery-thumbs button:hover {
  opacity: 0.85;
}

.custom-gallery-thumbs button.is-active {
  border-color: var(--color-gold-light);
  opacity: 1;
  transform: translateY(-3px);
}

.custom-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 620px) {
  .custom-gallery-lightbox {
    padding: 38px 48px 110px;
  }

  .custom-gallery-lightbox figure {
    max-width: 100%;
  }

  .custom-gallery-lightbox figure img {
    max-height: 68vh;
  }

  .custom-gallery-prev {
    left: 12px;
  }

  .custom-gallery-next {
    right: 12px;
  }

  .custom-gallery-thumbs {
    max-width: calc(100vw - 96px);
  }
}

/* Rental Page / bespoke collection gallery */
.bespoke-gallery {
  margin-top: clamp(84px, 10vw, 140px);
  padding-top: clamp(48px, 6vw, 78px);
  border-top: 1px solid var(--color-line);
}

.bespoke-gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 56px;
}

.bespoke-gallery-intro h2 {
  position: relative;
  z-index: 0;
  margin: 0;
  color: var(--color-ink);
  font-family: "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.12;
}

.bespoke-gallery-heading-deco {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;

  white-space: nowrap;
  transform: translate(-50%, -55%);

  color: #a4856d;
  font-family: "Parisienne", "Noto Serif TC", cursive;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  opacity: 0.16;
  pointer-events: none;
}

.bespoke-gallery-intro > p:last-child {
  max-width: 360px;
  margin: 0 0 4px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.9;
}

.bespoke-gallery-filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.bespoke-gallery-filters {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bespoke-gallery-filters::-webkit-scrollbar {
  display: none;
}

.bespoke-gallery-filters label {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex: 0 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  color: var(--color-muted);
  font-size: 12px;
  cursor: pointer;
}

.bespoke-gallery-filters label span {
  color: var(--color-gold);
  font-size: 10px;
}

#bespoke-all:checked ~ .bespoke-gallery-filters label[for="bespoke-all"],
#bespoke-bridal:checked ~ .bespoke-gallery-filters label[for="bespoke-bridal"],
#bespoke-evening:checked ~ .bespoke-gallery-filters label[for="bespoke-evening"],
#bespoke-detail:checked ~ .bespoke-gallery-filters label[for="bespoke-detail"] {
  border-bottom-color: var(--color-gold);
  color: var(--color-ink);
}

.bespoke-gallery-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

#bespoke-bridal:checked ~ .bespoke-gallery-grid .bespoke-gallery-item:not(.is-bridal),
#bespoke-evening:checked ~ .bespoke-gallery-grid .bespoke-gallery-item:not(.is-evening),
#bespoke-detail:checked ~ .bespoke-gallery-grid .bespoke-gallery-item:not(.is-detail) {
  display: none;
}

@media (max-width: 620px) {
  .bespoke-gallery-intro {
    display: block;
  }

  .bespoke-gallery-intro > p:last-child {
    margin-top: 18px;
  }

  .bespoke-gallery-filters {
    gap: 18px;
  }

  .bespoke-gallery-heading-deco {
    font-size: clamp(40px, 16vw, 90px);
  }
}

.rental-story-banner {
  position: relative;
  width: 100vw;
  height: clamp(360px, 44vw, 560px);
  min-height: 0;
  margin-top: clamp(88px, 11vw, 150px);
  margin-left: calc((var(--page-width) - 100vw) / 2);
  overflow: hidden;
  background: var(--rental-ink);
}

.rental-story-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.rental-story-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, 0.34);
}

.rental-story-banner-copy {
  position: absolute;
  top: 50%;
  right: 24px;
  left: 24px;
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}

.rental-story-banner-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.08;
}

.rental-story-banner-copy h2 em {
  font-style: normal;
}

.rental-story-banner-copy > p:last-child {
  max-width: 460px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 2;
}

.rental-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  margin-top: 80px;
  padding: 26px 0 12px;
  border-top: 1px solid rgba(170, 135, 109, 0.58);
  background: var(--rental-surface);
}

.rental-notes h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.rental-note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
}

.rental-notes-steps p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}

.rental-notes-steps strong {
  color: var(--rental-gold);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
}

.rental-notes-steps span {
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: 18px;
}

.rental-notes-steps small {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 12px;
}

/* Rental Page / fitting journey panel */
.rental-page .rental-notes {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 620px;
  gap: clamp(44px, 8vw, 120px);
  margin-top: clamp(84px, 10vw, 140px);
  padding: clamp(54px, 7vw, 86px) clamp(28px, 5vw, 72px);
  border: 1px solid rgba(23, 19, 15, 0.08);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.9) 40%,
      rgba(255, 255, 255, 0.78) 100%
    ),
    url("./img/background.png") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(23, 19, 15, 0.1);
}

.rental-page .rental-notes > * {
  position: relative;
  z-index: 1;
}

.rental-page .rental-notes-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-block: auto;
}

.rental-page .rental-notes-heading h3 {
  max-width: 460px;
  margin: 0;
  color: var(--rental-ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.12;
}

.rental-page .rental-notes-heading .eyebrow {
  color: var(--rental-gold);
}

.rental-page .rental-notes-heading .rental-note {
  max-width: 340px;
  margin-top: 24px;
  color: var(--color-muted);
  line-height: 2;
}

.rental-page .rental-notes-visual {
  position: relative;
  width: calc(100% + clamp(28px, 5vw, 72px));
  height: clamp(260px, 28vw, 390px);
  margin: auto 0 0;
  overflow: hidden;
  background: #ddd0c8;
}

.rental-page .rental-notes-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-page .rental-notes-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.rental-page .rental-notes-steps {
  position: relative;
  align-self: center;
  width: 100%;
  padding: 8px 0;
  margin-block: auto;
}

.rental-page .rental-notes-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 22px;
  width: 1px;
  background: rgba(168, 135, 93, 0.38);
}

.rental-page .rental-notes-steps p {
  position: relative;
  z-index: 1;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
}

.rental-page .rental-notes-steps p:first-child {
  border-top: 1px solid var(--color-line);
}

.rental-page .rental-notes-steps strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(168, 135, 93, 0.38);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--rental-ink);
  font-size: 15px;
}

.rental-page .rental-notes-steps span {
  padding-top: 8px;
  color: var(--rental-ink);
  font-size: 22px;
}

.rental-page .rental-notes-steps small {
  margin-top: 8px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
}

/* Rental Page / footer layout */
.rental-page + .reservation-section + .site-footer,
.site-footer {
  width: 100%;
}

.site-footer .footer-main {
  grid-template-columns: minmax(240px, 1.45fr) minmax(120px, 0.7fr) minmax(220px, 1fr) minmax(200px, 0.9fr);
  gap: clamp(28px, 4vw, 64px);
  padding: 72px 0 58px;
}

.site-footer .footer-brand-block {
  min-width: 0;
}

.site-footer .footer-brand-block .brand-logo {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 26px;
}

.site-footer .footer-about h2,
.site-footer .footer-links h2,
.site-footer .footer-locations h2,
.site-footer .footer-contact h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.site-footer .footer-about p {
  max-width: 430px;
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.9;
}

.site-footer .footer-links {
  gap: 13px;
}

.site-footer .footer-links a {
  font-size: 12px;
  line-height: 1.5;
}

.site-footer .footer-locations address {
  margin: 0;
  font-style: normal;
}

.site-footer .footer-locations p,
.site-footer .footer-contact p {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer .footer-locations p span {
  display: inline-block;
  min-width: 54px;
  margin-right: 8px;
  color: var(--color-ink);
  font-weight: 500;
}

.site-footer .footer-contact a {
  margin-top: 0;
  color: var(--color-gold);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
}

.site-footer .footer-bottom {
  padding: 20px 0 24px;
}

@media (max-width: 900px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 32px;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 32px);
    padding: 58px 0 42px;
  }

  .site-footer .footer-brand-block .brand-logo {
    width: 132px;
  }

  .site-footer .footer-bottom {
    width: calc(100% - 32px);
    line-height: 1.7;
  }
}

/* Custom service editorial blocks */
.custom-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  max-width: var(--page-width);
  margin-top: clamp(80px, 10vw, 140px);
  margin-inline: auto;
  padding: clamp(52px, 7vw, 96px) clamp(24px, 5vw, 72px);
}

.custom-guide-definition {
  background: var(--color-cream);
}

.custom-guide-details {
  background: var(--color-ivory);
}

.custom-guide-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  padding: 0 14% 48px 0;
}

.custom-guide-visual img:first-child {
  display: block;
  width: 82%;
  height: 450px;
  object-fit: cover;
}

.custom-guide-visual img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 235px;
  object-fit: cover;
  border: 10px solid var(--color-cream);
}

.custom-guide-visual figcaption {
  position: absolute;
  left: 0;
  bottom: 8px;
  color: var(--color-gold);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.custom-guide-copy {
  max-width: 560px;
}

.custom-guide-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.12;
}

.custom-guide-copy h2 em {
  font-style: normal;
}

.custom-guide-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
}

.custom-price-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 24px;
  max-width: 500px;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
}

.custom-price-note span {
  padding: 11px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 16px;
}

.custom-price-note strong {
  padding: 11px 0;
  border-bottom: 1px solid var(--color-line);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}

.custom-price-note span {
  color: var(--color-muted);
}

.custom-price-note strong {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 400;
}

.custom-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(48px, 7vw, 96px);
  min-height: 680px;
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(54px, 7vw, 86px) clamp(28px, 6vw, 84px);
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(246, 241, 234, 0.35) 0%,
      rgba(246, 241, 234, 0.74) 42%,
      rgba(255, 255, 255, 0.94) 66%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    url("./img/bg01.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(23, 19, 15, 0.1);
}

.custom-process > * {
  position: relative;
  z-index: 1;
}

.custom-process-heading h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: "Noto Serif TC", "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.12em;
}

.custom-process-heading {
  align-self: center;
  max-width: 450px;
}

.custom-process-heading::after {
  content: "Our Process";
  display: block;
  margin-top: 18px;
  color: rgba(168, 135, 93, 0.52);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-style: normal;
  line-height: 1;
}

.custom-process-heading > p:last-child {
  max-width: 330px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.06em;
}

.custom-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-self: center;
  min-height: 480px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: custom-step;
}

.custom-process-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  min-height: 240px;
  padding: 30px 34px 34px 0;
  border-top: 1px solid rgba(168, 135, 93, 0.28);
  counter-increment: custom-step;
}

.custom-process-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid rgba(168, 135, 93, 0.2);
}

.custom-process-list li:nth-child(n + 3) {
  border-bottom: 1px solid rgba(168, 135, 93, 0.28);
}

.custom-process-list li::before {
  content: "0" counter(custom-step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: -2px;
  border: 1px solid rgba(168, 135, 93, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.custom-process-list strong {
  grid-column: 2;
  color: var(--color-ink);
  font-family: "Noto Serif TC", "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.custom-process-list span {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

@media (max-width: 900px) {
  .rental-hero {
    min-height: 620px;
  }
}

@media (max-width: 700px) {
  .rental-hero {
    height: 84svh;
    min-height: 560px;
  }

  .rental-hero-copy {
    width: calc(100% - 40px);
    padding-left: 24px;
    padding-right: 20px;
    padding-bottom: 90px;
  }

  .rental-hero-copy::before {
    content: none;
  }

  .rental-page .rental-hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .rental-content {
    width: 100%;
    padding: 72px 16px 90px;
  }

  .rental-visual-gallery {
    grid-template-columns: 1fr;
  }

  .rental-visual-gallery figure {
    aspect-ratio: 4 / 5;
  }

  .rental-opening {
    display: block;
    margin-bottom: 84px;
  }

  .rental-opening .section-intro {
    margin-bottom: 42px;
  }

  .rental-opening .rental-visual-gallery {
    grid-template-rows: repeat(2, minmax(180px, 46vw));
  }

  .rental-plan-grid,
  .rental-price-reference {
    grid-template-columns: 1fr;
  }

  .rental-price-reference {
    padding: 42px 22px;
  }

  .rental-bespoke-section {
    display: block;
    padding-inline: 22px;
  }

  .custom-guide,
  .custom-process {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;

    max-width: 100%;
    margin-inline: 0;

    padding: 52px 22px 62px;
  }

  .custom-guide-definition .custom-guide-copy {
    order: 1;
  }

  .custom-guide-definition .custom-guide-visual {
    order: 2;

    margin-bottom: 0;
  }

  .custom-price-note {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 12px;
    max-width: 100%;
  }

  .custom-price-note span {
    font-size: 16px;
  }

  .custom-price-note strong {
    font-size: 18px;
  }

  .custom-guide-visual {
    min-height: 400px;
    margin-bottom: 42px;
    padding-right: 8%;
  }

  .custom-guide-visual img:first-child {
    width: 90%;
    height: 350px;
  }

  .custom-guide-visual img:nth-child(2) {
    width: 46%;
    height: 200px;
    border-width: 7px;
  }

  .custom-process-list {
    grid-template-rows: none;
    margin-top: 42px;
  }

  .custom-process {
    min-height: 0;
    border-radius: 6px;
    background-position: 18% center;
  }

  .custom-process-heading h2 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .custom-process-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    min-height: 190px;
    padding-right: 16px;
  }

  .custom-process-list li:nth-child(even) {
    padding-left: 16px;
  }

  .custom-process-list li::before {
    margin-top: 0;
  }

  .custom-process-list {
    min-height: 0;
  }

  .rental-bespoke-details {
    margin-top: 42px;
  }

  .rental-bespoke-process {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .rental-bespoke-process p {
    grid-column: 2;
  }

  .rental-story-banner {
    height: 440px;
    min-height: 0;
    margin-top: 72px;
    margin-left: -16px;
  }

  .rental-notes,
  .rental-page .rental-notes {
    display: block;
    margin-top: 64px;
    padding: 48px 22px;
    min-height: 0;
  }

  .rental-notes-steps {
    margin-top: 30px;
  }


/* Rental Page / fitting journey background image */
.rental-page .rental-notes {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.54) 0%,
      rgba(255, 255, 255, 0.34) 48%,
      rgba(255, 255, 255, 0.2) 100%
    ),
    url("./img/background.png");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, cover;
}
  .rental-page .rental-notes-visual {
    width: 100%;
    height: 280px;
    margin-top: 38px;
  }

  .rental-page .rental-notes-steps::before {
    left: 20px;
  }

  .rental-page .rental-notes-steps p {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .rental-page .rental-notes-steps strong {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 700px) {
  .rental-page .bespoke-information,
  .rental-page .bespoke-process-editorial {
    display: block;
  }

  .rental-page .bespoke-information-visual {
    min-height: 350px;
    margin-bottom: 42px;
    padding: 0 10% 46px 0;
  }

  .rental-page .bespoke-information-visual div {
    width: 84%;
    height: 300px;
  }

  .rental-page .bespoke-information-visual div:nth-child(2) {
    width: 44%;
    height: 175px;
    border-width: 7px;
  }

  .rental-page .bespoke-process-editorial-list {
    margin-top: 42px;
  }
}

/* Rental Page / fitting journey final background */
.rental-page .rental-notes {
  background: var(--color-white);
}

/* Rental Page / bespoke reference composition */
.rental-page .rental-bespoke-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: clamp(48px, 7vw, 104px);
  min-height: 720px;
  padding: clamp(58px, 7vw, 92px) clamp(34px, 6vw, 86px) 0;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      rgba(246, 241, 234, 0.68) 0%,
      rgba(255, 255, 255, 0.9) 56%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    url("./img/bg01.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(23, 19, 15, 0.1);
}

.rental-page .rental-bespoke-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-bottom: 0;
}

.rental-page .rental-bespoke-copy h2 {
  margin: 0;
  color: var(--rental-ink);
  font-family: "Noto Serif TC", var(--font-serif), serif;
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.rental-page .rental-bespoke-lead {
  margin-top: 28px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.04em;
}

.rental-page .rental-bespoke-copy > p:not(.eyebrow):not(.rental-bespoke-lead) {
  max-width: 470px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.rental-page .rental-bespoke-copy .text-link {
  margin-top: 28px;
}

.rental-page .rental-bespoke-feature-image {
  position: relative;
  width: calc(100% + clamp(34px, 6vw, 86px));
  height: clamp(280px, 29vw, 400px);
  margin: auto 0 0;
  overflow: hidden;
  background: #e6ddd3;
  box-shadow: 0 -12px 30px rgba(23, 19, 15, 0.05);
}

.rental-page .rental-bespoke-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-page .rental-bespoke-feature-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.rental-page .rental-bespoke-details {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 0;
}

.rental-page .rental-bespoke-process {
  grid-template-columns: 52px minmax(130px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 19, 15, 0.16);
  border-bottom: 0;
}

.rental-page .rental-bespoke-process:last-of-type {
  border-bottom: 1px solid rgba(23, 19, 15, 0.16);
}

.rental-page .rental-bespoke-process > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(168, 135, 93, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--rental-gold);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
}

.rental-page .rental-bespoke-process strong {
  color: var(--rental-ink);
  font-family: "Noto Serif TC", var(--font-serif), serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.rental-page .rental-bespoke-process p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.rental-page .rental-bespoke-prices {
  margin-top: 32px;
  padding: 28px 30px;
  border: 1px solid rgba(23, 19, 15, 0.1);
  background: rgba(246, 241, 234, 0.72);
  box-shadow: 0 14px 30px rgba(23, 19, 15, 0.07);
}

.rental-page .rental-bespoke-prices h3 {
  margin-bottom: 18px;
  font-family: "Noto Serif TC", var(--font-serif), serif;
  font-size: 25px;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .rental-page .rental-bespoke-section {
    display: block;
    min-height: 0;
    padding: 48px 22px 0;

    border: 0;
    border-radius: 0;

    background: var(--color-cream);

    box-shadow: none;
  }

  .rental-page .rental-bespoke-feature-image {
    width: 100%;
    height: 280px;
    margin-top: 42px;
  }

  .rental-page .rental-bespoke-details {
    margin-top: 46px;
    padding-bottom: 48px;
  }

  .rental-page .rental-bespoke-process {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .rental-page .rental-bespoke-process p {
    grid-column: 2;
  }
}

.rental-page .rental-notes-steps {
  background: transparent;
}

/* Rental Page / fitting journey final panel */
.rental-page .rental-notes {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.54) 46%,
      rgba(255, 255, 255, 0.38) 100%
    ),
    url("./img/background.png") center / cover no-repeat;
}

.rental-page .rental-notes-heading,
.rental-page .rental-notes-steps {
  align-self: center;
}

.rental-page .rental-notes-heading {
  justify-content: center;
}

@media (min-width: 701px) {
  .rental-page .rental-bespoke-process > span,
  .rental-page .rental-bespoke-process strong,
  .rental-page .rental-bespoke-prices p > span,
  .rental-page .rental-bespoke-prices p > strong,
  .rental-page .custom-process-list strong,
  .rental-page .rental-notes-steps strong {
    white-space: nowrap;
  }
}
