:root {
  --ink: #17211c;
  --muted: #667167;
  --leaf: #335f46;
  --moss: #8a9a5b;
  --wine: #7b2d3a;
  --gold: #b88746;
  --paper: #f7f3ea;
  --cream: #fffaf0;
  --line: rgba(23, 33, 28, 0.14);
  --shadow: 0 24px 80px rgba(23, 33, 28, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  line-height: 1.65;
}

::selection {
  color: #fff;
  background: var(--wine);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(23, 33, 28, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-family: Georgia, serif;
  font-size: 20px;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.84);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.primary-button {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 12px 34px rgba(123, 45, 58, 0.28);
}

.secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: min(860px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-slides,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  opacity: 0;
  object-fit: cover;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 6s ease;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 22, 17, 0.78), rgba(13, 22, 17, 0.34) 58%, rgba(13, 22, 17, 0.1)),
    linear-gradient(0deg, rgba(13, 22, 17, 0.9), rgba(13, 22, 17, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 48px;
  color: #fff;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 48px;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.hero-dots button.is-active {
  width: 48px;
  background: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #d7b277;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-stats span {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats span:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 76px;
}

.celebration-cases,
.packages,
.booking {
  scroll-margin-top: 76px;
}

.scene-gallery {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  overflow: hidden;
  background: #eef0ea;
}

.scene-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.scene-gallery__heading h2,
.scene-gallery__heading p {
  margin-bottom: 0;
}

.scene-gallery__heading > p {
  color: var(--muted);
}

.scene-gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 42vw);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--leaf) rgba(23, 33, 28, 0.1);
}

.scene-gallery figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--leaf);
}

.scene-gallery figure::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(0deg, rgba(12, 21, 16, 0.7), transparent);
  pointer-events: none;
}

.scene-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.scene-gallery figure:hover img {
  transform: scale(1.035);
}

.scene-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 20px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 36px));
  padding: 0;
  transform: translateY(-32px);
  box-shadow: var(--shadow);
}

.conversion-strip a {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--cream);
}

.conversion-strip a:last-child {
  border-right: 0;
}

.conversion-strip strong {
  color: var(--leaf);
  font-size: 18px;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 14px;
}

.intro-grid,
.visual-band,
.service,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip span {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  color: var(--leaf);
  font-weight: 700;
}

.proof-strip span:last-child {
  border-right: 0;
}

.visit-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding-top: 34px;
}

.guide-heading h2 {
  margin-bottom: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-grid article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.56);
}

.guide-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.guide-grid h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.guide-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.lead-magnet {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  background: #fff7e8;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.lead-panel p {
  color: var(--muted);
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--leaf);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.lead-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: #fff;
  background: var(--leaf);
  box-shadow: var(--shadow);
}

.lead-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card strong {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.lead-card p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.visual-band {
  width: 100%;
  padding: 72px max(18px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: #17211c;
}

.video-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.media-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 12px;
  min-height: 520px;
}

.media-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.media-mosaic img:first-child {
  grid-row: 1 / -1;
}

.media-mosaic img,
.venue-card img,
.story-image-wrap img {
  transition: transform 420ms ease, filter 420ms ease;
}

.media-mosaic img:hover,
.venue-card:hover img,
.story-image-wrap:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.editorial-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 7vw, 104px);
  align-items: center;
}

.story-image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--leaf);
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 30, 24, 0.62), transparent 45%);
  pointer-events: none;
}

.story-image-wrap p {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 22px;
}

.story-copy h2 {
  max-width: 620px;
}

.story-list {
  display: grid;
  gap: 0;
  margin: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.story-list > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.story-list span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.story-list p {
  margin: 0;
  color: var(--muted);
}

.story-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.text-link,
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--leaf);
  font-weight: 800;
}

.text-link span {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
}

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

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

.venue-card,
.package,
.timeline > div,
.faq details {
  border: 1px solid var(--line);
  background: var(--cream);
}

.venue-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.venue-card:hover {
  box-shadow: 0 16px 38px rgba(23, 33, 28, 0.12);
  transform: translateY(-4px);
}

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card--featured {
  grid-row: span 3;
}

.venue-card--featured img {
  height: 62%;
  min-height: 520px;
  aspect-ratio: auto;
}

.venue-card:not(.venue-card--featured) {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
}

.venue-card:not(.venue-card--featured) img {
  height: 100%;
  aspect-ratio: auto;
}

.venue-card div {
  padding: 24px;
}

.tag,
.package-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-card p {
  color: var(--muted);
}

.venue-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--leaf);
}

.venue-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 23px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue-match p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.venue-match strong {
  color: var(--leaf);
}

.celebration-cases {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  background: #e9ede7;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  height: 600px;
}

.case-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: #fff;
}

.case-card--wide {
  grid-row: 1 / 3;
}

.case-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 18, 13, 0.84), rgba(10, 18, 13, 0.02) 65%);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.case-card:hover img {
  transform: scale(1.025);
}

.case-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.case-card span {
  color: #e4c793;
  font-size: 12px;
  font-weight: 900;
}

.case-card h3,
.case-card p {
  margin-bottom: 4px;
}

.case-card p {
  color: rgba(255, 255, 255, 0.75);
}

.advantages {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.advantages__intro {
  position: sticky;
  top: 100px;
}

.advantages__intro p:last-child,
.advantages__grid p {
  color: var(--muted);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advantages__grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.advantages__grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
}

.outline-button {
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid var(--leaf);
  background: transparent;
}

.packages {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  background: #efe5d1;
}

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

.package {
  min-height: 280px;
  padding: 30px;
}

.package.featured {
  color: #fff;
  background: var(--leaf);
  border-color: var(--leaf);
}

.package.featured .package-label,
.package.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(23, 33, 28, 0.18);
}

.price-guide p {
  margin: 0;
  color: var(--muted);
}

.wedding-day {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: stretch;
}

.wedding-day__visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.wedding-day__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(12, 20, 15, 0.8), transparent 45%);
}

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

.wedding-day__visual div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
}

.wedding-day__visual span,
.wedding-day__visual strong {
  display: block;
}

.wedding-day__visual span {
  color: #e4c793;
  font-size: 12px;
  font-weight: 900;
}

.wedding-day__visual strong {
  margin-top: 6px;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 28px;
}

.wedding-day__content {
  align-self: center;
}

.day-timeline {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.day-timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.day-timeline time {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
}

.day-timeline h3,
.day-timeline p {
  margin-bottom: 2px;
}

.day-timeline p {
  color: var(--muted);
}

.price {
  margin: 18px 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.traffic {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--cream);
}

.traffic-grid article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.traffic-grid article:last-child {
  border-right: 0;
}

.traffic-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.traffic-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service {
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 94px;
}

.service-copy p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px;
}

.timeline span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--leaf);
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.booking {
  width: 100%;
  padding: 92px max(18px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #17211c, #274634 48%, #7b2d3a);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  font: inherit;
  padding: 11px 12px;
  border-radius: 0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(215, 178, 119, 0.92);
  outline-offset: 2px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.booking-form option {
  color: var(--ink);
}

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

.form-button {
  border: 0;
  min-height: 52px;
}

.form-result {
  display: none;
  white-space: pre-wrap;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.form-result.is-visible {
  display: block;
}

.mobile-action-bar {
  display: none;
}

.customer-chat-launcher {
  position: fixed;
  z-index: 29;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 9px;
  align-items: center;
  width: 184px;
  min-height: 64px;
  padding: 10px 16px 10px 12px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 38px rgba(75, 33, 27, 0.28);
  cursor: pointer;
  text-align: left;
}

.customer-chat-launcher > span {
  display: inline-grid;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.customer-chat-launcher strong,
.customer-chat-launcher small {
  display: block;
}

.customer-chat-launcher strong {
  font-size: 15px;
}

.customer-chat-launcher small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.customer-chat-launcher:hover,
.customer-chat-launcher:focus-visible {
  background: #6d2c23;
  outline: 3px solid rgba(142, 68, 54, 0.28);
  outline-offset: 3px;
}

.customer-chat {
  position: fixed;
  z-index: 31;
  right: 28px;
  bottom: 104px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(380px, calc(100vw - 36px));
  height: min(540px, calc(100vh - 136px));
  overflow: hidden;
  border: 1px solid rgba(24, 38, 29, 0.18);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(20, 29, 24, 0.27);
}

.customer-chat[hidden] {
  display: none;
}

.customer-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: var(--leaf);
}

.customer-chat__header strong,
.customer-chat__header span {
  display: block;
}

.customer-chat__header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.customer-chat__close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.customer-chat__close:hover,
.customer-chat__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 1px;
}

.customer-chat__body {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #f8f5ee;
}

.customer-chat__messages {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
}

.chat-message {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
}

.chat-message p {
  margin: 0;
}

.chat-message--assistant {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
}

.chat-message--user {
  align-self: flex-end;
  border-color: var(--leaf);
  color: #fff;
  background: var(--leaf);
}

.chat-message--loading {
  color: #68756d;
  background: #eef0ea;
}

.chat-message--loading p::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 currentColor, 16px 0 currentColor;
  animation: chat-typing 1s steps(3, end) infinite;
}

@keyframes chat-typing {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}

.chat-message a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 10px;
  color: var(--leaf);
  border: 1px solid rgba(51, 95, 70, 0.36);
  background: #f7f3ea;
  font-size: 12px;
  font-weight: 800;
}

.customer-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 16px 14px;
}

.customer-chat__quick button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(51, 95, 70, 0.28);
  border-radius: 16px;
  color: var(--leaf);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.customer-chat__quick button:hover,
.customer-chat__quick button:focus-visible {
  color: #fff;
  border-color: var(--leaf);
  background: var(--leaf);
}

.customer-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.customer-chat__form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(23, 33, 28, 0.2);
  color: var(--ink);
  background: #faf8f3;
  font: inherit;
  font-size: 14px;
}

.customer-chat__form input:focus {
  outline: 2px solid rgba(51, 95, 70, 0.42);
  outline-offset: 1px;
}

.customer-chat__form button {
  min-width: 54px;
  height: 42px;
  border: 0;
  color: #fff;
  background: var(--wine);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.customer-chat__form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

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

.wechat-toast {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 92px;
  width: min(420px, calc(100% - 36px));
  padding: 14px 16px;
  color: #fff;
  background: rgba(23, 33, 28, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.wechat-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #111813;
}

.footer p {
  margin: 6px 0 0;
}

.footer-note {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-record {
  font-size: 13px;
}

.footer-record a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.footer-record a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer strong,
.footer a {
  color: #fff;
}

@media (max-width: 880px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 28px, 680px);
    padding-top: 108px;
    padding-bottom: 34px;
  }

  .hero-dots {
    right: 18px;
    bottom: 30px;
  }

  .conversion-strip,
  .hero-stats,
  .proof-strip,
  .visit-guide,
  .editorial-story,
  .package-grid,
  .traffic-grid,
  .faq-grid,
  .intro-grid,
  .lead-panel,
  .visual-band,
  .service,
  .booking,
  .advantages,
  .wedding-day {
    grid-template-columns: 1fr;
  }

  .advantages__intro {
    position: static;
  }

  .case-grid {
    display: flex;
    height: auto;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .case-card,
  .case-card--wide {
    flex: 0 0 min(84vw, 440px);
    min-height: 500px;
    scroll-snap-align: start;
  }

  .scene-gallery__heading {
    grid-template-columns: 1fr;
  }

  .scene-gallery__track {
    grid-auto-columns: min(82vw, 520px);
    margin-right: -18px;
  }

  .scene-gallery figure {
    min-height: 460px;
  }

  .venue-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .venue-card {
    flex: 0 0 min(84vw, 420px);
    display: block !important;
    scroll-snap-align: start;
  }

  .venue-card--featured {
    grid-row: auto;
  }

  .venue-card img,
  .venue-card--featured img,
  .venue-card:not(.venue-card--featured) img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .conversion-strip {
    transform: none;
    margin-top: 0;
    box-shadow: none;
  }

  .conversion-strip a {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .media-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

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

  .guide-grid article {
    min-height: auto;
  }

  .guide-grid span {
    margin-bottom: 16px;
  }

  .story-image-wrap {
    min-height: 420px;
  }

  .venue-match {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-guide {
    align-items: flex-start;
    flex-direction: column;
  }

  .wedding-day__visual {
    min-height: 520px;
  }

  .media-mosaic img,
  .media-mosaic img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-stats span,
  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-strip span {
    border-bottom-color: var(--line);
  }

  .service-copy {
    position: static;
  }

  .timeline > div {
    grid-template-columns: 54px 1fr;
  }

  .traffic-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .traffic-grid article:last-child {
    border-bottom: 0;
  }

  .traffic-grid span {
    margin-bottom: 14px;
  }

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

  .mobile-action-bar {
    position: fixed;
    z-index: 25;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(23, 33, 28, 0.14);
    background: rgba(255, 250, 240, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--line);
    color: var(--leaf);
    background: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-action-bar a:nth-child(2) {
    color: #fff;
    border-color: var(--wine);
    background: var(--wine);
  }

  .customer-chat-launcher {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: 154px;
    min-height: 54px;
    padding: 8px 12px 8px 9px;
  }

  .customer-chat-launcher > span {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .customer-chat-launcher strong {
    font-size: 14px;
  }

  .customer-chat-launcher small {
    font-size: 10px;
  }

  .customer-chat {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    height: min(480px, calc(100dvh - 176px));
  }

  body.has-chat-open .customer-chat-launcher {
    display: none;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .section,
  .scene-gallery,
  .packages,
  .celebration-cases,
  .lead-magnet,
  .traffic,
  .visual-band,
  .booking {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .scene-gallery__track {
    grid-auto-columns: 86vw;
  }

  .scene-gallery figure {
    min-height: 390px;
  }

  .hero-actions a {
    width: 100%;
  }

  .package {
    min-height: auto;
  }

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

  .advantages__grid article {
    min-height: auto;
  }

  .advantages__grid span {
    margin-bottom: 20px;
  }

  .case-card,
  .case-card--wide {
    min-height: 430px;
  }

  .wedding-day__visual {
    min-height: 440px;
  }

  .lead-card,
  .booking-form {
    padding: 18px;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-cta {
    min-height: 40px;
    font-size: 13px;
  }
}

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

  .hero-image,
  .reveal-on-scroll,
  .media-mosaic img,
  .venue-card img,
  .story-image-wrap img {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
