:root {
  --ink: #1f1b18;
  --muted: #6d625c;
  --line: #ded5ce;
  --paper: #fffdfa;
  --soft: #f6efe9;
  --rose: #c9827d;
  --sage: #76866b;
  --gold: #a87549;
  --charcoal: #171310;
  --shadow: 0 20px 50px rgba(36, 26, 19, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid rgba(222, 213, 206, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fffdfa;
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #403832;
  font-weight: 650;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--gold);
  border-color: var(--gold);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f4ede7;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch a {
  min-width: 44px;
  padding: 5px 10px;
  color: var(--muted);
  text-align: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.language-switch a[aria-current="page"] {
  color: #fffdfa;
  background: var(--charcoal);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(360px, 0.64fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  min-height: min(720px, calc(100vh - 78px));
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  background: #f3e8e0;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 253, 250, 0.76) 32%, rgba(255, 253, 250, 0.25) 62%, rgba(255, 253, 250, 0.04) 100%),
    url("./assets/hero-poster-v2.jpg?v=20260607-brand-pay-buttons-v11") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 250, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 560px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: #4e443d;
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fffdfa;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 250, 0.82);
  border-color: var(--line);
}

.button.payment-button {
  flex: 1 1 calc(50% - 5px);
  gap: 7px;
  min-width: 132px;
  min-height: 54px;
  padding-right: 12px;
  padding-left: 12px;
  color: #fffdfa;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(34, 30, 27, 0.12);
  white-space: nowrap;
  line-height: 1;
}

.button.payment-button::before {
  content: "";
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.button.wechat-pay {
  background: #07c160;
  border-color: #07c160;
}

.button.wechat-pay::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M26 14C14.4 14 5 21.4 5 30.6c0 5.2 3 9.8 7.7 12.9l-1.5 5.4 6.4-3.2c2.6.9 5.4 1.4 8.4 1.4 11.6 0 21-7.4 21-16.5S37.6 14 26 14Zm-7.2 13.3a3.1 3.1 0 1 1 0-6.2 3.1 3.1 0 0 1 0 6.2Zm14.4 0a3.1 3.1 0 1 1 0-6.2 3.1 3.1 0 0 1 0 6.2Z'/%3E%3Cpath fill='%23fff' opacity='.9' d='M43.4 28.1c8.8 0 15.6 5.8 15.6 13 0 4-2.2 7.6-5.7 10l1.1 4.4-5.1-2.6c-1.8.6-3.8.9-5.9.9-8.8 0-15.6-5.8-15.6-12.9 0-7.2 6.8-12.8 15.6-12.8Zm-5.3 10.5a2.3 2.3 0 1 0 0-4.6 2.3 2.3 0 0 0 0 4.6Zm10.7 0a2.3 2.3 0 1 0 0-4.6 2.3 2.3 0 0 0 0 4.6Z'/%3E%3C/svg%3E");
}

.button.paypal-pay {
  background: linear-gradient(135deg, #0070ba, #003087);
  border-color: #003087;
}

.button.paypal-pay::before {
  content: "P";
  color: #003087;
  background: #fffdfa;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.button.is-disabled {
  pointer-events: none;
  color: #7e746d;
  background: #ebe5df;
  border-color: #d7cec6;
}

.button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.hero-info {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  display: grid;
  width: min(520px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(222, 213, 206, 0.85);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-info div,
.value-strip div,
.shop-grid div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-info div:nth-child(2n),
.value-strip div:last-child,
.shop-grid div:nth-child(2n) {
  border-right: 0;
}

.hero-info div:nth-last-child(-n+2),
.shop-grid div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.hero-info span,
.value-strip span,
.shop-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-info strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.1;
}

.hero-info div:last-child strong {
  font-size: clamp(18px, 2.2vw, 28px);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 104px) 0;
  scroll-margin-top: 96px;
}

.section.compact {
  padding-top: 16px;
  padding-bottom: 34px;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

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

.value-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

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

.service-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  text-decoration: none;
  background: #fffefa;
  border: 1px solid rgba(222, 213, 206, 0.9);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(36, 26, 19, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #ead8c9, #f8f1ea);
}

.service-visual::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 38px;
  z-index: 2;
  width: 72px;
  height: 1px;
  background: rgba(255, 253, 250, 0.72);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 16, 0.03) 15%, rgba(23, 19, 16, 0.48) 100%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.42), rgba(255, 253, 250, 0) 48%);
}

.service-visual img {
  width: 100%;
  min-height: 210px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
  transition: transform 0.35s ease;
}

.service-visual-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 253, 250, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-cover-brand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: rgba(255, 253, 250, 0.86);
  font-size: 11px;
  font-weight: 900;
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 10px;
  color: #fffdfa;
  background: rgba(23, 19, 16, 0.72);
  border: 1px solid rgba(255, 253, 250, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
  padding: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card .price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.service-card .linklike {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-card:focus-visible,
.button:focus-visible,
.text-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(168, 117, 73, 0.35);
  outline-offset: 2px;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 117, 73, 0.55);
  box-shadow: 0 16px 34px rgba(36, 26, 19, 0.08);
}

.service-card:hover .service-visual img {
  transform: scale(1.035);
}

.service-detail {
  width: min(1240px, calc(100% - 36px));
}

.purchase-detail {
  padding-top: clamp(28px, 5vw, 54px);
}

.purchase-head {
  margin-bottom: 24px;
}

.service-detail.is-hidden {
  display: none;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
  padding: clamp(18px, 4vw, 34px);
  background: #fbf7f2;
  border: 1px solid var(--line);
}

.detail-media > img,
.detail-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #171310;
}

.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 16, 0.04), rgba(23, 19, 16, 0.5)),
    linear-gradient(135deg, rgba(255, 253, 250, 0.28), transparent 46%);
  pointer-events: none;
}

.detail-cover-brand,
.detail-cover-line {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.detail-cover-brand {
  right: 18px;
  bottom: 18px;
  color: rgba(255, 253, 250, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.detail-cover-line {
  right: 18px;
  bottom: 40px;
  width: 82px;
  height: 1px;
  background: rgba(255, 253, 250, 0.68);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.detail-gallery .media-card {
  min-width: 0;
}

.detail-gallery .media-frame {
  aspect-ratio: 1 / 1;
}

.detail-gallery .media-card-body {
  padding: 10px;
}

.detail-gallery .media-card h3 {
  font-size: 13px;
}

.detail-gallery .media-card p {
  display: none;
}

.detail-copy {
  min-width: 0;
}

.text-button {
  float: right;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.detail-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.price-line {
  margin: 12px 0 16px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.detail-intro {
  margin: 0 0 18px;
  color: #4f463f;
  font-size: 17px;
}

.detail-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.detail-block h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.detail-block ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.purchase-panel-inline {
  margin: 10px 0 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(246, 239, 233, 0.92)),
    #fffefa;
  border-color: rgba(168, 117, 73, 0.36);
  box-shadow: 0 18px 40px rgba(36, 26, 19, 0.08);
}

.purchase-panel-inline h3,
.purchase-panel-inline p,
.purchase-panel-inline .eyebrow {
  color: var(--ink);
}

.purchase-panel-inline p {
  color: var(--muted);
}

.purchase-panel h3,
.purchase-panel p {
  margin: 0 0 8px;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.payment-message {
  margin: 10px 0 12px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.payment-message strong,
.payment-message p {
  display: block;
  margin: 0;
}

.payment-message strong {
  color: var(--ink);
}

.payment-message p {
  margin-top: 4px;
}

.payment-message.success {
  background: #f2f8f1;
  border-color: #92b596;
}

.payment-message.warning {
  background: #fff7e7;
  border-color: #cda66d;
}

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

.payment-method {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 30, 27, 0.06);
}

.payment-method h3,
.payment-method p {
  margin: 0;
}

.qr-method img {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.focused-payment {
  max-width: 720px;
}

.empty-state,
.order-card {
  min-width: 0;
  padding: 20px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 30, 27, 0.06);
}

.empty-state h3,
.empty-state p,
.order-card h3,
.order-card p {
  margin: 0;
}

.empty-state {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.order-list {
  display: grid;
  gap: 14px;
}

.order-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-card strong,
.order-card span {
  display: block;
  text-align: right;
}

.order-card span {
  color: var(--muted);
  font-size: 13px;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 20px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 15px;
  color: #2c2926;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.filter-chip.is-active {
  color: #fffdfa;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

.shop-gallery {
  margin-top: 24px;
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 30, 27, 0.07);
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

.media-preview-button {
  padding: 0;
  color: inherit;
  border: 0;
  cursor: zoom-in;
  text-align: left;
}

.media-preview-button.is-video {
  cursor: pointer;
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame video {
  background: #181512;
}

.media-type {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  color: #fffdfa;
  background: rgba(24, 21, 18, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.media-open-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 21, 18, 0.76);
  box-shadow: 0 10px 24px rgba(24, 21, 18, 0.24);
}

.media-open-mark::before,
.media-open-mark::after {
  content: "";
  position: absolute;
  background: #fffdfa;
}

.media-open-mark::before {
  width: 14px;
  height: 2px;
}

.media-open-mark::after {
  width: 2px;
  height: 14px;
}

.media-preview-button.is-video .media-open-mark::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  background: transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fffdfa;
}

.media-preview-button.is-video .media-open-mark::after {
  display: none;
}

.media-card-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.media-card-body span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.media-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.media-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

body.preview-open {
  overflow: hidden;
}

.media-preview-modal[hidden] {
  display: none;
}

.media-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.media-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 12, 0.76);
  backdrop-filter: blur(10px);
}

.media-preview-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 18px;
  width: min(1180px, 100%);
  max-height: min(92vh, 860px);
  overflow: hidden;
  padding: 14px;
  background: #fffefa;
  border: 1px solid rgba(255, 253, 250, 0.38);
  border-radius: 8px;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.36);
}

.media-preview-stage {
  display: grid;
  min-height: min(70vh, 720px);
  place-items: center;
  overflow: hidden;
  background: #171410;
  border-radius: 6px;
}

.media-preview-stage img,
.media-preview-stage video {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
}

.media-preview-stage video {
  width: 100%;
}

.media-preview-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 8px 18px 0;
}

.media-preview-copy h3 {
  margin: 0;
  font-size: 24px;
}

.media-preview-copy p {
  margin: 0;
  color: var(--muted);
}

.media-preview-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffdfa;
  background: rgba(24, 21, 18, 0.82);
  border: 1px solid rgba(255, 253, 250, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.booking {
  width: min(980px, calc(100% - 36px));
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
  background: #fffefa;
  border: 1px solid var(--line);
}

.booking-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.booking-form span {
  color: #4b433d;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8cec6;
  border-radius: 6px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-result {
  margin-top: 16px;
  padding: 20px;
  background: #f4f7f0;
  border: 1px solid rgba(118, 134, 107, 0.35);
  border-radius: 8px;
}

.booking-result h3,
.booking-result p {
  margin: 0 0 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.question-board {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.question-form,
.answer-form {
  display: grid;
  gap: 14px;
}

.question-form {
  max-width: 760px;
  padding: 20px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 30, 27, 0.06);
}

.question-form label,
.answer-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.question-form input,
.question-form textarea,
.answer-form select,
.answer-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.question-form textarea,
.answer-form textarea {
  resize: vertical;
}

.question-list {
  display: grid;
  gap: 14px;
}

.question-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.question-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.question-card h3,
.answer-list p {
  margin: 0;
}

.answer-list {
  display: grid;
  gap: 8px;
}

.answer-list p {
  padding: 12px 14px;
  color: var(--muted);
  background: #f7f1eb;
  border-radius: 6px;
}

.answer-list strong {
  margin-right: 8px;
  color: var(--gold);
}

details {
  padding: 18px 20px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

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

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fffefa;
}

.shop-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.25;
}

.site-footer {
  padding: 32px 18px 96px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 8px;
  background: rgba(255, 253, 250, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: #fffdfa;
  background: var(--charcoal);
  border-radius: 6px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 720px;
    padding-top: 38px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 253, 250, 0.72) 44%, rgba(255, 253, 250, 0.12) 100%),
      url("./assets/hero-poster-v2.jpg?v=20260607-brand-pay-buttons-v11") center / cover no-repeat;
  }

  .hero-content {
    align-self: start;
    padding-bottom: 0;
  }

  .hero-info {
    justify-self: start;
    align-self: end;
    width: min(560px, 100%);
  }

  .value-strip,
  .media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: auto;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

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

  .brand small {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    font-size: 14px;
  }

  .hero {
    min-height: 720px;
    padding: 28px 18px;
    align-content: space-between;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 130px;
  }

  .hero-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-info div {
    padding: 14px;
  }

  .hero-info strong {
    font-size: 18px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .section-head h2 {
    font-size: 38px;
  }

  .value-strip,
  .service-grid,
  .media-gallery,
  .shop-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-filters {
    gap: 8px;
  }

  .filter-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .media-card-body {
    padding: 11px;
  }

  .media-card h3 {
    font-size: 14px;
  }

  .media-card p {
    display: none;
  }

  .value-strip div:nth-child(2n),
  .shop-grid div:nth-child(2n) {
    border-right: 0;
  }

  .value-strip div:nth-child(n+3),
  .shop-grid div:nth-child(n+3) {
    border-bottom: 0;
  }

  .value-strip div,
  .shop-grid div {
    padding: 14px;
  }

  .service-grid {
    gap: 10px;
  }

  .service-card-body {
    min-height: 154px;
    padding: 11px;
  }

  .service-visual img {
    min-height: 128px;
    aspect-ratio: 1 / 1;
  }

  .service-tag {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 13px;
  }

  .service-card .price {
    font-size: 15px;
  }

  .detail-shell {
    padding: 14px;
  }

  .detail-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .media-preview-modal {
    padding: 10px;
  }

  .media-preview-dialog {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 94vh;
    overflow-y: auto;
    padding: 10px;
  }

  .media-preview-stage {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .media-preview-stage img,
  .media-preview-stage video {
    max-height: 68vh;
  }

  .media-preview-copy {
    padding: 6px 4px 4px;
  }

  .media-preview-copy h3 {
    font-size: 18px;
  }

  .media-preview-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .purchase-panel {
    grid-template-columns: 1fr;
  }

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

  .shop-grid strong {
    font-size: 16px;
  }

  .mobile-cta {
    display: grid;
  }

  .order-card {
    display: grid;
  }

  .order-card strong,
  .order-card span {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-info strong,
  .shop-grid strong {
    font-size: 15px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    display: none;
  }

  .service-card-body {
    min-height: 132px;
  }

  .service-card .linklike {
    font-size: 12px;
  }
}


