:root {
  --paper: #f7f3e9;
  --paper-2: #fffdf8;
  --ink: #143d32;
  --ink-2: #265848;
  --gold: #b9853e;
  --gold-2: #dfbd7a;
  --line: rgba(185, 133, 62, .28);
  --muted: #6d776f;
  --shadow: 0 20px 60px rgba(40, 51, 45, .1);
  --radius: 24px;
  --max: 1180px;
  --site-background-image: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 99999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(247, 243, 233, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 54px; height: 48px; overflow: hidden; display: grid; place-items: center; }
.brand-mark img { width: 78px; max-width: none; transform: translateX(-1px); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: "Songti SC", "STSong", serif; font-size: 22px; letter-spacing: .12em; }
.brand-copy small { color: var(--gold); font-size: 11px; margin-top: 6px; letter-spacing: .18em; }
.primary-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; }
.primary-nav a { position: relative; padding: 12px 0; color: #43584f; }
.primary-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 4px; height: 1px; background: var(--gold); transition: .25s; }
.primary-nav a:hover::after, .primary-nav a.active::after { left: 0; right: 0; }
.primary-nav a.active { color: var(--ink); font-weight: 700; }
.nav-cta { border: 1px solid var(--gold); color: var(--ink); background: transparent; padding: 10px 18px; border-radius: 999px; transition: .25s; }
.nav-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; }
.menu-toggle span { display: block; height: 1.5px; margin: 6px 0; background: var(--ink); transition: .25s; }

.hero { position: relative; overflow: hidden; padding: 78px 0 34px; min-height: 760px; }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -160px; border-radius: 50%; border: 1px solid var(--line); box-shadow: 0 0 0 70px rgba(185,133,62,.035), 0 0 0 140px rgba(185,133,62,.022); }
.hero::after { content: ""; position: absolute; left: -8%; right: -8%; height: 260px; bottom: -90px; background: radial-gradient(ellipse at 50% 10%, rgba(185,133,62,.16), transparent 62%); transform: rotate(-2deg); }
.hero-grain { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 0 65%, rgba(255,255,255,.5) 65% 100%); opacity: .45; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.eyebrow, .kicker { margin: 0; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .25em; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 44px; height: 1px; background: var(--gold); }
.hero h1 { margin: 28px 0 22px; font-family: "Songti SC", "STSong", serif; font-size: clamp(48px, 6vw, 82px); line-height: 1.12; letter-spacing: -.03em; font-weight: 600; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { max-width: 620px; color: #56655f; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.button { border-radius: 999px; padding: 13px 24px; border: 1px solid transparent; display: inline-flex; justify-content: center; align-items: center; gap: 8px; font-weight: 700; transition: .25s; }
.button-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 28px rgba(20,61,50,.18); }
.button-primary:hover { transform: translateY(-2px); background: var(--ink-2); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button-ghost:hover { border-color: var(--gold); background: rgba(255,255,255,.5); }
.button-gold { background: var(--gold-2); color: var(--ink); }
.button-gold:hover { transform: translateY(-2px); background: #ebcb8c; }
.trust-list { padding: 0; margin: 34px 0 0; list-style: none; display: flex; flex-wrap: wrap; gap: 24px; color: #55625d; font-size: 13px; }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; }
.trust-list svg { width: 17px; height: 17px; stroke: var(--gold); }
.trust-list img { width: 17px; height: 17px; object-fit: contain; }
.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.visual-halo { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff 0, #f4ead5 54%, rgba(223,189,122,.06) 70%); border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-logo { position: relative; width: min(440px, 88%); aspect-ratio: 3/4; object-fit: cover; border-radius: 46% 46% 32px 32px; box-shadow: 0 32px 80px rgba(60,53,41,.16); mix-blend-mode: multiply; }
.floating-card { position: absolute; background: rgba(255,253,248,.88); backdrop-filter: blur(14px); border: 1px solid rgba(185,133,62,.22); box-shadow: 0 14px 40px rgba(48,50,43,.1); border-radius: 16px; padding: 15px 18px; min-width: 140px; }
.floating-card span { display: block; color: var(--muted); font-size: 11px; letter-spacing: .12em; }
.floating-card strong { font-family: "Songti SC", serif; font-size: 20px; }
.card-a { left: -8px; top: 110px; }
.card-b { right: -12px; bottom: 82px; }
.qr-showcase { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(280px, .85fr) minmax(500px, 1.15fr); gap: 44px; align-items: center; margin-top: 48px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,.78); box-shadow: 0 16px 46px rgba(40,51,45,.07); backdrop-filter: blur(12px); }
.qr-showcase-copy { max-width: 430px; }
.qr-kicker { margin: 0 0 10px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.qr-showcase h2 { margin: 0; font-family: "Songti SC", "STSong", serif; font-size: clamp(28px, 3vw, 42px); line-height: 1.25; }
.qr-showcase-copy > p:not(.qr-kicker) { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.qr-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.qr-badges span { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: #57665f; background: rgba(255,255,255,.52); font-size: 11px; }
.qr-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.qr-card { min-width: 0; padding: 11px; border: 1px solid rgba(185,133,62,.22); border-radius: 16px; background: var(--paper-2); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.qr-card:hover { transform: translateY(-3px); border-color: rgba(185,133,62,.48); box-shadow: 0 14px 34px rgba(40,51,45,.1); }
.qr-image-wrap { position: relative; height: 250px; overflow: hidden; border-radius: 10px; background: #fff; }
.qr-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.qr-card-copy { display: flex; flex-direction: column; gap: 2px; padding: 11px 4px 3px; min-width: 0; }
.qr-card-copy span { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.qr-card-copy strong { overflow-wrap: anywhere; font-size: 14px; }
.qr-card-copy small { color: var(--muted); font-size: 11px; }
.notice-strip { position: relative; z-index: 3; margin-top: 58px; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 14px 24px; border: 1px solid var(--line); background: rgba(255,253,248,.7); border-radius: 999px; color: #5c625f; font-size: 13px; }
.notice-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 6px rgba(185,133,62,.12); }
.notice-strip strong { color: var(--ink); }
.notice-separator { width: 1px; height: 16px; background: var(--line); }

.section { padding: 112px 0; position: relative; }
.section-heading { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.section-no { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.heading-copy { display: flex; align-items: end; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.heading-copy h2 { margin: 0; font-family: "Songti SC", "STSong", serif; font-size: clamp(38px, 4.6vw, 62px); font-weight: 600; }
.heading-copy p { margin: 0 0 10px; color: var(--muted); }
.section-errand { background: var(--paper-2); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 248px; padding: 32px 26px 26px; border: 1px solid rgba(185,133,62,.2); border-radius: var(--radius); background: linear-gradient(145deg, #fffefa, #fbf5e9); overflow: hidden; transition: .35s cubic-bezier(.2,.8,.2,1); }
.service-card::after { content: ""; position: absolute; inset: auto -45px -65px auto; width: 140px; height: 140px; border: 1px solid rgba(185,133,62,.14); border-radius: 50%; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(185,133,62,.45); }
.card-index { position: absolute; right: 20px; top: 18px; color: rgba(20,61,50,.18); font-family: Georgia, serif; font-size: 22px; }
.icon-box { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: rgba(185,133,62,.09); color: var(--gold); }
.icon-box svg { width: 25px; height: 25px; }
.icon-box img { width: 26px; height: 26px; object-fit: contain; }
.service-card h3 { margin: 24px 0 10px; font-family: "Songti SC", serif; font-size: 21px; }
.service-card p { margin: 0; color: #69736e; font-size: 14px; }
.service-card small { display: inline-block; margin-top: 13px; color: #9b6038; border: 1px solid rgba(155,96,56,.24); border-radius: 999px; padding: 3px 9px; }
.service-card-wide { grid-column: span 2; min-height: 150px; display: flex; align-items: center; gap: 24px; }
.service-card-wide h3 { margin-top: 0; }
.section-callout { margin-top: 28px; padding: 28px 32px; background: var(--ink); color: #fff; border-radius: 22px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.section-callout div { display: flex; flex-direction: column; }
.section-callout span { color: rgba(255,255,255,.64); font-size: 13px; }
.text-button { border: 0; background: transparent; color: var(--gold-2); font-weight: 700; white-space: nowrap; }
.text-button span { color: inherit; font-size: 18px; margin-left: 8px; }

.section-emotion { background: var(--ink); color: #fff; overflow: hidden; }
.section-emotion::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: 60px; border: 1px solid rgba(223,189,122,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(223,189,122,.035), 0 0 0 160px rgba(223,189,122,.02); }
.section-heading.light .heading-copy { border-color: rgba(223,189,122,.25); }
.section-heading.light .heading-copy p { color: rgba(255,255,255,.6); }
.emotion-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.emotion-card { position: relative; min-height: 300px; border: 1px solid rgba(223,189,122,.22); background: rgba(255,255,255,.035); border-radius: var(--radius); padding: 34px 28px; transition: .35s; overflow: hidden; }
.emotion-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(223,189,122,.08), transparent 46%); opacity: 0; transition: .35s; }
.emotion-card:hover { transform: translateY(-6px); border-color: rgba(223,189,122,.55); }
.emotion-card:hover::after { opacity: 1; }
.emotion-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(223,189,122,.35); color: var(--gold-2); }
.emotion-icon svg { width: 28px; height: 28px; }
.emotion-icon img { width: 30px; height: 30px; object-fit: contain; }
.emotion-no { color: rgba(255,255,255,.28); letter-spacing: .2em; font-size: 12px; margin: 50px 0 6px; }
.emotion-card h3 { margin: 0 0 12px; font-family: "Songti SC", serif; font-size: 25px; }
.emotion-card > p:last-child { color: rgba(255,255,255,.58); font-size: 14px; }
.scope-card { margin-top: 24px; padding: 26px 30px; border: 1px solid rgba(223,189,122,.28); border-radius: 18px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: rgba(255,255,255,.035); }
.scope-card > span { color: var(--gold-2); font-size: 12px; letter-spacing: .18em; }
.scope-card i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.scope-card p { flex-basis: 100%; margin: 0; color: rgba(255,255,255,.52); font-size: 13px; }

.section-pricing { background: #f8f4ea; }
.pricing-switch { width: fit-content; display: flex; gap: 6px; padding: 5px; background: #ede6d7; border-radius: 999px; margin-bottom: 34px; }
.price-tab { border: 0; background: transparent; color: #66716c; border-radius: 999px; padding: 11px 22px; font-weight: 700; }
.price-tab.active { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(20,61,50,.16); }
.price-panel { animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
.price-summary { display: grid; grid-template-columns: repeat(4,1fr); background: var(--ink); color: #fff; border-radius: 24px; overflow: hidden; margin-bottom: 26px; }
.price-summary > div { padding: 28px; border-right: 1px solid rgba(255,255,255,.1); }
.price-summary > div:last-child { border-right: 0; }
.price-summary span { display: block; color: rgba(255,255,255,.56); font-size: 12px; margin-bottom: 8px; }
.price-summary strong { font-family: Georgia, "Songti SC", serif; font-size: 28px; color: var(--gold-2); }
.price-summary small { font-family: inherit; font-size: 12px; margin-left: 3px; color: rgba(255,255,255,.65); }
.price-accordions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.price-item { background: var(--paper-2); border: 1px solid rgba(185,133,62,.2); border-radius: 17px; overflow: hidden; }
.price-item summary { list-style: none; min-height: 70px; padding: 18px 22px; display: grid; grid-template-columns: 32px 34px 1fr auto; align-items: center; gap: 10px; cursor: pointer; }
.price-item summary::-webkit-details-marker { display: none; }
.price-item summary span { color: var(--gold); font-family: Georgia, serif; }
.price-item-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(185,133,62,.09); color: var(--gold); }
.price-item-icon svg { width: 18px; height: 18px; }
.price-item-icon img { width: 19px; height: 19px; object-fit: contain; }
.price-item summary strong { font-size: 14px; }
.price-item summary em { color: var(--ink); font-style: normal; font-weight: 700; font-size: 13px; }
.price-item[open] { box-shadow: 0 12px 30px rgba(50,52,45,.07); }
.price-item[open] summary { border-bottom: 1px solid rgba(185,133,62,.15); }
.price-content { padding: 18px 22px 21px 72px; color: #59655f; font-size: 13px; }
.price-content p { margin: 5px 0; }
.price-content b { color: var(--ink); }
.muted { color: #8a8e8b; }
.emotion-prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.emotion-price-card { position: relative; background: var(--paper-2); border: 1px solid rgba(185,133,62,.22); border-radius: 22px; padding: 30px; overflow: hidden; }
.emotion-price-card.featured { border-color: var(--gold); }
.featured-label { position: absolute; top: 18px; right: -42px; width: 160px; text-align: center; background: var(--gold); color: #fff; transform: rotate(35deg); font-size: 11px; padding: 5px; }
.price-card-head { display: flex; gap: 15px; align-items: center; margin-bottom: 22px; }
.price-card-head > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(185,133,62,.1); color: var(--gold); }
.price-card-head svg { width: 24px; height: 24px; }
.price-card-head img { width: 26px; height: 26px; object-fit: contain; }
.price-card-head p { margin: 0; color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.price-card-head h3 { margin: 3px 0 0; font-family: "Songti SC", serif; font-size: 22px; }
.emotion-price-card ul { list-style: none; padding: 0; margin: 0; }
.emotion-price-card li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px dashed rgba(185,133,62,.22); font-size: 13px; }
.emotion-price-card li:last-child { border-bottom: 0; }
.emotion-price-card li span { color: #6e7873; }
.card-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: #838a86; font-size: 12px; }
.pricing-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 26px; padding: 20px 24px; background: rgba(185,133,62,.08); border-radius: 16px; color: #68726e; }
.pricing-note svg { flex: 0 0 auto; width: 20px; height: 20px; stroke: var(--gold); margin-top: 3px; }
.pricing-note p { margin: 0; font-size: 13px; }
.pricing-note strong { color: var(--ink); }

.section-text { background: var(--paper-2); }
.text-section-content { max-width: 860px; margin-bottom: 28px; color: var(--muted); font-size: 17px; line-height: 1.9; }
.section-text.section-emotion .text-section-content { color: rgba(255,255,255,.72); }

.closing { padding: 100px 0; background: linear-gradient(115deg, #0c332a, #174a3c); color: #fff; }
.closing-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.closing p { margin: 0 0 18px; color: var(--gold-2); font-size: 11px; letter-spacing: .24em; }
.closing h2 { margin: 0; font-family: "Songti SC", serif; font-size: clamp(38px, 5vw, 64px); line-height: 1.18; }
.closing-qr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.closing-qr-card { display: grid; grid-template-columns: 158px minmax(0, 1fr); gap: 22px; align-items: center; min-width: 0; padding: 16px; border: 1px solid rgba(223,189,122,.22); border-radius: 18px; background: rgba(255,255,255,.055); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.closing-qr-card:hover { transform: translateY(-3px); border-color: rgba(223,189,122,.5); background: rgba(255,255,255,.08); }
.closing-qr-card img { width: 158px; height: 202px; object-fit: contain; border-radius: 10px; background: #fff; }
.closing-qr-card div { display: flex; flex-direction: column; min-width: 0; }
.closing-qr-card span { color: var(--gold-2); font-size: 10px; letter-spacing: .14em; }
.closing-qr-card strong { margin: 5px 0 2px; overflow-wrap: anywhere; color: #fff; font-size: 18px; }
.closing-qr-card small { color: rgba(255,255,255,.56); font-size: 12px; }
.site-footer { background: #08271f; color: rgba(255,255,255,.66); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 50px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.footer-brand img { width: 86px; height: 58px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: "Songti SC", serif; font-size: 23px; letter-spacing: .1em; }
.footer-brand span, .footer-meta p { font-size: 12px; }
.footer-meta p { margin: 4px 0; }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.footer-links a:hover { color: var(--gold-2); }
.copyright { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; font-size: 11px; }
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(185,133,62,.4); background: rgba(247,243,233,.88); color: var(--ink); backdrop-filter: blur(12px); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s; }
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }

.order-dialog { width: min(620px, calc(100% - 28px)); border: 0; padding: 0; border-radius: 24px; background: transparent; }
.order-dialog::backdrop { background: rgba(6,27,22,.68); backdrop-filter: blur(6px); }
.dialog-card { position: relative; background: var(--paper-2); border-radius: 24px; padding: 34px; color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.3); }
.dialog-close { position: absolute; right: 18px; top: 15px; border: 0; background: transparent; font-size: 28px; color: #7b8580; }
.dialog-kicker { color: var(--gold); font-size: 10px; letter-spacing: .22em; margin: 0; }
.dialog-card h2 { margin: 5px 0 8px; font-family: "Songti SC", serif; font-size: 34px; }
.dialog-desc { margin: 0 0 24px; color: #737d78; font-size: 13px; }
.dialog-card label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; color: #46564f; font-size: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dialog-card input, .dialog-card select, .dialog-card textarea { width: 100%; border: 1px solid rgba(185,133,62,.25); border-radius: 12px; padding: 12px 13px; background: #fffdf9; color: var(--ink); outline: none; }
.dialog-card input:focus, .dialog-card select:focus, .dialog-card textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,133,62,.1); }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.toast { position: fixed; left: 50%; bottom: 30px; z-index: 99999; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px; opacity: 0; pointer-events: none; transition: .25s; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

body.has-site-background { background-image: linear-gradient(rgba(248,244,234,.88), rgba(248,244,234,.88)), var(--site-background-image); background-size: cover; background-position: center; background-attachment: fixed; }
body.has-site-background .hero,
body.has-site-background .section-errand,
body.has-site-background .section-pricing,
body.has-site-background .section-text { background-image: linear-gradient(rgba(248,244,234,.9), rgba(255,253,248,.88)), var(--site-background-image); background-size: cover; background-position: center; background-attachment: fixed; }
body.has-site-background .section-emotion,
body.has-site-background .closing,
body.has-site-background .site-footer { background-image: linear-gradient(rgba(8,39,31,.91), rgba(10,44,37,.93)), var(--site-background-image); background-size: cover; background-position: center; background-attachment: fixed; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .primary-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .qr-showcase { grid-template-columns: minmax(240px, .72fr) minmax(430px, 1.28fr); gap: 26px; padding: 24px; }
  .qr-image-wrap { height: 220px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .emotion-grid { grid-template-columns: repeat(2, 1fr); }
  .price-accordions { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body.has-site-background,
  body.has-site-background .hero,
  body.has-site-background .section-errand,
  body.has-site-background .section-pricing,
  body.has-site-background .section-text,
  body.has-site-background .section-emotion,
  body.has-site-background .closing,
  body.has-site-background .site-footer { background-attachment: scroll; }
  .nav-wrap { height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; left: 20px; right: 20px; top: 80px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.97); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: stretch; gap: 5px; transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .25s; }
  .primary-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav a { padding: 10px 6px; }
  .nav-cta { margin-top: 8px; }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 460px; }
  .hero-logo { width: 360px; max-width: 80%; }
  .card-a { left: 7%; }
  .card-b { right: 7%; }
  .qr-showcase { grid-template-columns: 1fr; }
  .qr-showcase-copy { max-width: 620px; }
  .qr-image-wrap { height: 300px; }
  .notice-strip { border-radius: 22px; }
  .notice-separator { display: none; }
  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .heading-copy { align-items: flex-start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .price-summary { grid-template-columns: repeat(2,1fr); }
  .price-summary > div:nth-child(2) { border-right: 0; }
  .price-summary > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
  .closing-head { align-items: flex-start; flex-direction: column; }
  .closing-qr-grid { grid-template-columns: 1fr; max-width: 680px; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-copy small { display: none; }
  .brand-mark { width: 44px; }
  .hero h1 { font-size: 45px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 380px; }
  .visual-halo { width: 330px; height: 330px; }
  .hero-logo { width: 300px; }
  .floating-card { padding: 11px 13px; min-width: 118px; }
  .card-a { left: 0; top: 88px; }
  .card-b { right: 0; bottom: 55px; }
  .qr-showcase { margin-top: 30px; padding: 18px; gap: 22px; }
  .qr-card-grid { gap: 10px; }
  .qr-image-wrap { height: 220px; }
  .qr-card-copy { padding-inline: 2px; }
  .notice-strip { align-items: flex-start; justify-content: flex-start; padding: 18px; }
  .notice-strip span:not(.notice-dot):not(.notice-separator), .notice-strip strong { width: calc(100% - 28px); }
  .heading-copy { display: block; }
  .heading-copy p { margin-top: 10px; }
  .service-grid, .emotion-grid, .emotion-prices { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; display: block; min-height: 225px; }
  .service-card-wide h3 { margin-top: 24px; }
  .section-callout { align-items: flex-start; flex-direction: column; }
  .scope-card { align-items: flex-start; }
  .price-summary { grid-template-columns: 1fr; }
  .price-summary > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .price-summary > div:last-child { border-bottom: 0; }
  .price-item summary { grid-template-columns: 28px 32px 1fr; }
  .price-item summary em { grid-column: 3; }
  .price-content { padding-left: 22px; }
  .closing .button { width: 100%; }
  .closing-qr-card { grid-template-columns: 124px minmax(0, 1fr); gap: 15px; padding: 12px; }
  .closing-qr-card img { width: 124px; height: 166px; }
  .copyright { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .dialog-card { padding: 28px 20px 22px; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
}

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