:root {
  --brand-ink: #211820;
  --brand-plum: #4f223d;
  --brand-plum-dark: #2d1727;
  --brand-rose: #a64d73;
  --brand-gold: #d6aa65;
  --brand-cream: #f7f2ed;
  --brand-blush: #f4e8ea;
  --brand-white: #fff;
  --brand-muted: #746b72;
  --brand-line: rgba(79, 34, 61, .14);
  --brand-shadow: 0 24px 70px rgba(47, 24, 41, .14);
  --brand-radius: 1.25rem;
  --bs-primary: var(--brand-plum);
  --bs-primary-rgb: 79, 34, 61;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; font-size: 18px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--brand-ink);
  background: var(--brand-white);
  font-family: "DM Sans", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, "Songti SC", serif; }
img { max-width: 100%; }
a { color: var(--brand-plum); text-decoration: none; }
a:hover { color: var(--brand-rose); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(214, 170, 101, .55); outline-offset: 3px; }

.site-container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.skip-link { position: fixed; top: -6rem; left: 1rem; z-index: 100; padding: .75rem 1rem; color: #fff; background: var(--brand-plum); border-radius: .4rem; }
.skip-link:focus { top: 1rem; }

.site-topbar { color: rgba(255,255,255,.8); background: var(--brand-plum-dark); font-size: .78rem; letter-spacing: .02em; }
.site-topbar__row { min-height: 2.35rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-topbar__contact { display: flex; align-items: center; gap: 1.25rem; }
.site-topbar a { color: #fff; }
.site-topbar i { margin-right: .3rem; color: var(--brand-gold); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(79,34,61,.1); background: rgba(255,255,255,.95); box-shadow: 0 8px 30px rgba(38,19,33,.04); backdrop-filter: blur(16px); }
.site-header__row { min-height: 5.25rem; display: flex; align-items: center; gap: 1.6rem; }
.site-brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--brand-ink); font-family: "Playfair Display", Georgia, serif; font-size: 1.16rem; font-weight: 700; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.site-nav a { position: relative; padding: .7rem .8rem; color: #5f565d; font-size: .9rem; font-weight: 600; }
.site-nav a::after { position: absolute; right: .8rem; bottom: .28rem; left: .8rem; height: 2px; content: ""; background: var(--brand-gold); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--brand-plum); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav-toggle { display: none; margin-left: auto; padding: .55rem .8rem; border: 1px solid var(--brand-line); color: var(--brand-plum); background: #fff; border-radius: .5rem; }
.site-actions { display: flex; align-items: center; gap: .7rem; }
.language-menu { position: relative; }
.language-menu summary { cursor: pointer; padding: .55rem; color: var(--brand-muted); font-size: .86rem; list-style: none; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu__list { position: absolute; top: calc(100% + .7rem); right: 0; display: grid; min-width: 9.5rem; padding: .45rem; border: 1px solid var(--brand-line); background: #fff; border-radius: .75rem; box-shadow: var(--brand-shadow); }
.language-menu__list a { padding: .55rem .7rem; border-radius: .45rem; }
.language-menu__list a:hover { background: var(--brand-cream); }

.site-button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 3rem; padding: .7rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 700; letter-spacing: .025em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.site-button:hover { transform: translateY(-2px); }
.site-button--primary { color: #fff; background: linear-gradient(135deg, var(--brand-rose), var(--brand-plum)); box-shadow: 0 12px 28px rgba(79,34,61,.23); }
.site-button--primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(79,34,61,.32); }
.site-button--light { color: var(--brand-plum); background: #fff; box-shadow: 0 15px 34px rgba(20,10,17,.18); }
.site-button--light:hover { color: var(--brand-plum); background: var(--brand-cream); }

.site-hero { position: relative; min-height: clamp(36rem, 76vh, 48rem); overflow: hidden; background: var(--brand-plum-dark); }
.site-hero::after { position: absolute; inset: auto 0 0; height: 7rem; pointer-events: none; content: ""; background: linear-gradient(transparent, rgba(23,10,19,.34)); }
.site-hero__slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; visibility: hidden; background-position: center; background-size: cover; transition: opacity .7s ease, visibility .7s ease; }
.site-hero__slide::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(35,17,30,.28), transparent 60%); }
.site-hero__slide.is-active { opacity: 1; visibility: visible; }
.site-hero__content { position: relative; z-index: 2; padding-block: 5rem 7rem; color: #fff; }
.site-hero__content h1 { max-width: 700px; margin: .35rem 0 1rem; font-size: clamp(3rem, 6.7vw, 6rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; text-shadow: 0 8px 40px rgba(0,0,0,.25); }
.site-hero__content > p:not(.site-eyebrow) { max-width: 590px; margin-bottom: 1.6rem; color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.22rem); }
.site-eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 .65rem; color: var(--brand-rose); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.site-eyebrow::before { width: 2.25rem; height: 1px; content: ""; background: currentColor; }
.site-hero .site-eyebrow { color: #f1c889; }
.site-hero__proof { display: flex; gap: 1rem; margin-top: 2.3rem; }
.site-hero__proof span { display: flex; flex-direction: column; min-width: 8.5rem; padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.72); font-size: .74rem; }
.site-hero__proof span:last-child { border: 0; }
.site-hero__proof strong { color: #fff; font-family: "Playfair Display", serif; font-size: 1.35rem; line-height: 1.15; }
.site-hero__controls { position: absolute; right: 0; bottom: 2.2rem; left: 50%; z-index: 3; display: flex; align-items: center; justify-content: flex-end; gap: .65rem; color: #fff; transform: translateX(-50%); }
.site-hero__controls button { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(33,24,32,.28); border-radius: 50%; backdrop-filter: blur(8px); }
.site-hero__controls button:hover { color: var(--brand-plum); background: #fff; }

.trust-bar { position: relative; z-index: 5; color: #fff; background: var(--brand-plum); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-bar__grid > div { display: flex; align-items: center; gap: 1rem; min-height: 6rem; padding: 1rem 2rem; border-right: 1px solid rgba(255,255,255,.14); }
.trust-bar__grid > div:last-child { border: 0; }
.trust-bar strong { color: var(--brand-gold); font-family: "Playfair Display", serif; font-size: 1.45rem; }
.trust-bar span { font-size: .88rem; font-weight: 600; }

.content-section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.content-section--soft { background: var(--brand-cream); }
.commercial-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.commercial-copy h2, .product-section__content h2, .testimonial-heading h2, .register-heading h2, .section-heading h2 { margin: 0 0 1.2rem; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.035em; }
.commercial-lead { color: var(--brand-muted); font-size: 1.02rem; }
.commercial-highlight { display: flex; gap: 1rem; margin: 2rem 0; padding: 1.3rem 0; border-top: 1px solid var(--brand-line); border-bottom: 1px solid var(--brand-line); }
.commercial-highlight__icon { flex: 0 0 auto; display: grid; place-items: center; width: 3.3rem; height: 3.3rem; color: #fff; background: var(--brand-plum); border-radius: 50%; }
.commercial-highlight h3 { margin: 0 0 .25rem; font-size: 1.2rem; }
.commercial-highlight p { margin: 0; color: var(--brand-muted); font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; padding-bottom: .2rem; border-bottom: 1px solid var(--brand-gold); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.product-visual { position: relative; }
.product-visual__glow { position: absolute; top: -4rem; right: -2rem; width: 17rem; height: 17rem; background: var(--brand-blush); border-radius: 50%; filter: blur(2px); }
.product-visual--wide > img { position: relative; z-index: 1; display: block; width: 100%; min-height: 27rem; object-fit: cover; border-radius: 8rem 1rem 1rem 1rem; box-shadow: var(--brand-shadow); }
.product-visual--wide::after { position: absolute; right: -1rem; bottom: -1rem; z-index: 0; width: 55%; height: 65%; content: ""; border: 1px solid var(--brand-gold); border-radius: 1rem; }
.floating-proof { position: absolute; z-index: 3; display: flex; align-items: center; gap: .8rem; min-width: 12.5rem; padding: .85rem 1rem; color: var(--brand-ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.7); border-radius: .8rem; box-shadow: 0 16px 42px rgba(33,24,32,.16); backdrop-filter: blur(10px); }
.floating-proof i { color: var(--brand-rose); font-size: 1.3rem; }
.floating-proof span { display: flex; flex-direction: column; color: var(--brand-muted); font-size: .7rem; }
.floating-proof strong { color: var(--brand-ink); font-size: .82rem; }
.floating-proof--top { top: 2rem; left: -2rem; }
.floating-proof--bottom { right: -1.5rem; bottom: 2rem; }

.product-section { overflow: hidden; color: #fff; background: radial-gradient(circle at 85% 20%, #6f3458 0, transparent 28%), var(--brand-plum-dark); }
.product-section__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.product-section__content > p:not(.site-eyebrow) { max-width: 610px; color: rgba(255,255,255,.68); }
.product-section .site-eyebrow { color: var(--brand-gold); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 2.4rem; border-top: 1px solid rgba(255,255,255,.14); }
.feature-list article { display: flex; align-items: center; gap: .85rem; min-height: 4.3rem; padding: .7rem .7rem .7rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
.feature-list article:nth-child(even) { padding-left: 1rem; }
.feature-list span { color: var(--brand-gold); font-size: .7rem; }
.feature-list strong { font-size: .85rem; font-weight: 600; }
.product-collage { position: relative; min-height: 44rem; }
.product-collage figure { margin: 0; overflow: hidden; background: #fff; box-shadow: 0 26px 60px rgba(0,0,0,.28); }
.product-collage img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-collage__primary img { object-fit: contain; object-position: top center; }
.product-collage__primary { position: absolute; top: 0; right: 0; width: 76%; height: 88%; border-radius: 8rem 1rem 1rem; }
.product-collage__secondary { position: absolute; bottom: 0; left: 0; z-index: 2; width: 54%; aspect-ratio: 1; border: 8px solid var(--brand-plum-dark); border-radius: 1rem; }
.product-collage__badge { position: absolute; top: 3rem; left: 0; z-index: 3; display: flex; flex-direction: column; padding: 1rem 1.2rem; color: var(--brand-ink); background: var(--brand-gold); border-radius: .7rem; box-shadow: 0 18px 42px rgba(0,0,0,.25); transform: rotate(-4deg); }
.product-collage__badge strong { font-family: "Playfair Display", serif; font-size: 1.2rem; }
.product-collage__badge span { font-size: .67rem; }

.testimonial-section { background: var(--brand-cream); }
.testimonial-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.testimonial-heading > p { max-width: 460px; color: var(--brand-muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { display: flex; flex-direction: column; min-height: 25rem; padding: 2rem; border: 1px solid var(--brand-line); background: #fff; border-radius: var(--brand-radius); box-shadow: 0 16px 45px rgba(47,24,41,.06); transition: transform .25s ease, box-shadow .25s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--brand-shadow); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.review-card__top img { width: 2.3rem; height: 2.3rem; object-fit: contain; opacity: .5; }
.review-card__stars { color: #d79634; letter-spacing: .1em; }
.review-card blockquote { margin: 0 0 2rem; color: #51494f; font-family: "Playfair Display", Georgia, serif; font-size: 1.06rem; line-height: 1.75; }
.review-card footer { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card footer > span { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; color: #fff; background: var(--brand-plum); border-radius: 50%; font-family: "Playfair Display", serif; }
.review-card footer div { display: flex; flex-direction: column; }
.review-card footer small { color: var(--brand-muted); }

#register { scroll-margin-top: 5rem; }
.register-section { color: #fff; background: var(--brand-plum); }
.register-section .site-eyebrow { color: var(--brand-gold); }
.register-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.register-heading h2 { margin-bottom: 0; }
.register-heading > p { max-width: 450px; color: rgba(255,255,255,.7); }
.register-shell { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; background: #fff; border-radius: 1.5rem; box-shadow: 0 28px 70px rgba(24,10,20,.3); }
.register-visual { position: relative; min-height: 100%; overflow: hidden; background: #1d101a; }
.register-visual > img { width: 100%; height: 100%; min-height: 44rem; object-fit: cover; }
.register-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 35%, rgba(30,13,25,.92)); }
.register-visual__overlay { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; z-index: 2; }
.register-visual__overlay h3 { margin-top: .8rem; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.15; }
.register-form { padding: clamp(2rem, 5vw, 4rem); color: var(--brand-ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { color: #4f454c; font-size: .78rem; font-weight: 700; }
.form-field .form-control { min-height: 3.25rem; padding: .7rem .9rem; border: 1px solid #e1d8de; background: #fbf9fa; border-radius: .55rem; box-shadow: none; }
.form-field .form-control:focus { border-color: var(--brand-rose); box-shadow: 0 0 0 .2rem rgba(166,77,115,.1); }
.form-field textarea.form-control { min-height: 7.5rem; resize: vertical; }
.form-field .site-button { justify-self: start; margin-top: .5rem; padding-inline: 2rem; }
.field-validation-error, .validation-summary-errors { color: #a12222; font-size: .78rem; }

.page-heading { padding: clamp(4.5rem, 9vw, 7.5rem) 0; color: #fff; background: radial-gradient(circle at 80% 10%, #7f3c63, transparent 36%), var(--brand-plum-dark); }
.page-heading .site-eyebrow { color: var(--brand-gold); }
.page-heading h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -.04em; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading > p:not(.site-eyebrow) { color: var(--brand-muted); }
.content-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--brand-line); background: #fff; border-radius: var(--brand-radius); box-shadow: 0 14px 45px rgba(47,24,41,.07); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.shop-summary { display: grid; gap: 1rem; }
.shop-summary p { display: flex; align-items: flex-start; gap: 1rem; margin: 0; }
.shop-summary i { display: grid; place-items: center; flex: 0 0 auto; width: 2.8rem; height: 2.8rem; color: #fff; background: var(--brand-plum); border-radius: 50%; }
.shop-summary span { display: flex; flex-direction: column; }
.map-frame { width: 100%; min-height: 32rem; border: 0; border-radius: var(--brand-radius); box-shadow: var(--brand-shadow); }

.gallery-grid { columns: 4; column-gap: 1rem; padding: 3rem 0 5rem; }
.gallery-card { display: block; width: 100%; margin: 0 0 1rem; padding: 0; overflow: hidden; break-inside: avoid; border: 0; background: var(--brand-blush); border-radius: .9rem; box-shadow: 0 10px 30px rgba(47,24,41,.09); cursor: zoom-in; }
.gallery-card img { display: block; width: 100%; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-empty { padding: 5rem 0; color: var(--brand-muted); text-align: center; }
.gallery-dialog { width: min(1000px, calc(100% - 2rem)); max-height: calc(100% - 2rem); padding: 0; border: 0; background: transparent; }
.gallery-dialog::backdrop { background: rgba(20,9,17,.9); }
.gallery-dialog img { display: block; max-width: 100%; max-height: calc(100vh - 3rem); margin: auto; border-radius: .7rem; }
.gallery-dialog__close { position: fixed; top: 1rem; right: 1rem; z-index: 2; width: 2.9rem; height: 2.9rem; border: 0; color: #fff; background: rgba(0,0,0,.72); border-radius: 50%; font-size: 1.4rem; }

.site-footer { padding: 5rem 0 1.5rem; color: #bfb2ba; background: #1d111a; }
.site-footer h2 { color: #fff; font-size: 1.4rem; }
.site-footer a { color: #e7c994; }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.site-footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); color: #847780; font-size: .8rem; }
.hours-list { max-width: 32rem; margin: 0; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .32rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

@media (max-width: 1020px) {
  .site-header__row { flex-wrap: wrap; gap: .7rem; padding-block: .8rem; }
  .site-nav-toggle { display: block; }
  .site-nav { order: 4; display: none; width: 100%; flex-direction: column; align-items: stretch; margin: 0; padding-top: .6rem; border-top: 1px solid var(--brand-line); }
  .site-nav.is-open { display: flex; }
  .site-actions { margin-left: auto; }
  .commercial-grid, .product-section__grid { grid-template-columns: 1fr; }
  .commercial-copy { max-width: 760px; }
  .product-visual { width: min(760px, 100%); margin-inline: auto; }
  .product-section__content { max-width: 820px; }
  .product-collage { width: min(620px, 100%); margin-inline: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .register-shell { grid-template-columns: 1fr; }
  .register-visual > img { min-height: 32rem; }
  .gallery-grid { columns: 3; }
}

@media (max-width: 720px) {
  .site-container { width: min(100% - 1.5rem, 1180px); }
  .site-topbar__row { justify-content: center; text-align: center; }
  .site-topbar__row > span, .site-topbar__contact span { display: none; }
  .site-actions { order: 3; width: 100%; justify-content: space-between; }
  .language-menu__list { right: auto; left: 0; }
  .site-hero { min-height: 40rem; }
  .site-hero__content { padding-block: 4rem 8rem; }
  .site-hero__content h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .site-hero__proof { flex-wrap: wrap; }
  .site-hero__proof span { min-width: 6rem; }
  .trust-bar__grid { grid-template-columns: 1fr; padding-block: .5rem; }
  .trust-bar__grid > div { min-height: 4.5rem; padding: .7rem 1rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .commercial-grid { gap: 4rem; }
  .product-visual--wide > img { min-height: 20rem; border-radius: 4rem .8rem .8rem; }
  .floating-proof--top { top: -1.5rem; left: .8rem; }
  .floating-proof--bottom { right: .8rem; bottom: -1.8rem; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list article:nth-child(odd) { border-right: 0; }
  .feature-list article:nth-child(even) { padding-left: 0; }
  .product-collage { min-height: 35rem; }
  .testimonial-heading, .register-heading { display: block; }
  .testimonial-heading > p, .register-heading > p { margin-top: 1rem; }
  .register-visual > img { min-height: 26rem; }
  .register-visual__overlay { right: 1.25rem; bottom: 1.25rem; left: 1.25rem; }
  .form-grid, .contact-grid, .site-footer__grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 430px) {
  .site-brand { max-width: 70%; white-space: normal; }
  .site-hero__proof { gap: .55rem; }
  .site-hero__proof span { padding-right: .55rem; }
  .floating-proof { min-width: auto; }
  .floating-proof--bottom { display: none; }
  .product-collage { min-height: 29rem; }
  .product-collage__primary { width: 82%; }
  .product-collage__secondary { width: 57%; }
  .gallery-grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
