:root {
  --pink-50: #fff7fb;
  --pink-100: #ffeaf4;
  --pink-200: #ffd2e6;
  --pink-300: #ffacd0;
  --pink-400: #ff78b3;
  --pink-500: #f83f91;
  --pink-600: #d92e77;
  --berry: #5a2143;
  --berry-2: #7b2f59;
  --cream: #fffaf5;
  --lavender: #e9ddff;
  --mint: #d9f8eb;
  --gold: #ffd166;
  --ink: #2c2330;
  --muted: #6f6470;
  --line: #eadde5;
  --ok: #1c9257;
  --warn: #b66a00;
  --danger: #c63b58;
  --shadow: 0 16px 50px rgba(90, 33, 67, .12);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: linear-gradient(180deg, #fff 0%, var(--pink-50) 48%, #fff 100%); font-family: Inter, ui-rounded, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: var(--pink-600); text-decoration-thickness: 2px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); background: #fff; color: var(--berry); padding: 10px 14px; border-radius: 12px; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(234,221,229,.8); }
.header-row { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-link { display: flex; align-items: center; text-decoration: none; min-width: 220px; }
.brand-logo { width: 220px; height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.site-nav a { color: var(--berry); text-decoration: none; font-weight: 750; padding: 10px 12px; border-radius: 999px; }
.site-nav a:hover, .site-nav a:focus-visible { background: var(--pink-100); outline: none; }
.nav-toggle { display: none; border: 0; background: var(--pink-100); color: var(--berry); border-radius: 14px; padding: 10px 14px; font-weight: 800; }
.hero { padding: 72px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 52px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--pink-100); color: var(--pink-600); border: 1px solid var(--pink-200); border-radius: 999px; padding: 8px 13px; font-weight: 850; font-size: .88rem; letter-spacing: .02em; }
h1, h2, h3 { color: var(--berry); line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); letter-spacing: -.055em; margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.35rem; }
.lede { font-size: clamp(1.08rem, 2.4vw, 1.34rem); color: var(--muted); max-width: 700px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 14px; padding: 12px 18px; font-weight: 850; text-decoration: none; border: 2px solid transparent; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--pink-500), var(--pink-600)); box-shadow: 0 12px 28px rgba(248,63,145,.25); }
.button-secondary { color: var(--berry); background: #fff; border-color: var(--pink-200); }
.button-dark { color: #fff; background: var(--berry); }
.button-muted, .button[aria-disabled="true"] { color: #847781; background: #f0ebee; border-color: #e7dde3; cursor: not-allowed; transform: none; box-shadow: none; }
.hero-art { min-height: 500px; position: relative; border-radius: 44px; background: radial-gradient(circle at 20% 20%, #fff 0 8%, transparent 9%), linear-gradient(150deg, var(--pink-100), var(--lavender)); box-shadow: var(--shadow); overflow: hidden; border: 1px solid #fff; }
.hero-bracelet { position: absolute; width: 100%; height: 100%; left: 0; top: 0; object-fit: cover; object-position: center; }
.hero-card { position: absolute; left: 7%; bottom: 8%; right: 7%; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-radius: 24px; padding: 20px; box-shadow: 0 10px 30px rgba(90,33,67,.1); }
.price-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--berry); background: var(--gold); font-weight: 900; margin-right: 6px; }
.section { padding: 64px 0; }
.section-soft { background: rgba(255,234,244,.55); border-block: 1px solid var(--pink-100); }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 30px rgba(90,33,67,.07); }
.card img { border-radius: 16px; aspect-ratio: 4/3; object-fit: cover; background: var(--pink-50); }
.card .meta { color: var(--muted); font-size: .94rem; }
.product-card { display: flex; flex-direction: column; }
.product-card .button { margin-top: auto; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: var(--mint); color: #176943; font-size: .82rem; font-weight: 850; }
.notice { border-radius: 18px; padding: 18px 20px; background: #fff8e5; border: 1px solid #f6d98c; color: #684708; }
.notice strong { color: #5c3c00; }
.notice-pink { background: var(--pink-50); border-color: var(--pink-200); color: var(--berry); }
.notice-danger { background: #fff1f3; border-color: #f5bdc7; color: #7d2033; }
.drop-panel { background: linear-gradient(135deg,#fff,#fff1f7); border: 1px solid var(--pink-200); border-radius: 30px; padding: clamp(24px,5vw,48px); box-shadow: var(--shadow); }
.drop-colors { display: flex; gap: 10px; margin: 14px 0 20px; }
.color-dot { width: 30px; height: 30px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1px #d8ccd3; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); }
.price-table th { color: var(--berry); background: var(--pink-50); }
.form-card { max-width: 850px; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(22px,5vw,42px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { color: var(--berry); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #d8cad3; border-radius: 13px; padding: 12px 13px; color: var(--ink); background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(248,63,145,.18); border-color: var(--pink-500); }
.help { font-size: .88rem; color: var(--muted); }
.status { min-height: 24px; margin-top: 12px; font-weight: 750; }
.status.success { color: var(--ok); }
.status.error { color: var(--danger); }
.faq details { background:#fff; border:1px solid var(--line); border-radius:16px; padding:18px 20px; }
.faq details + details { margin-top:12px; }
.faq summary { cursor:pointer; color:var(--berry); font-weight:850; }
.site-footer { margin-top: 60px; background: var(--berry); color: #fff; padding: 50px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:32px; }
.site-footer h3 { color:#fff; }
.site-footer a { color:#ffd9e9; }
.footer-logo { width: 240px; padding: 8px; border-radius: 14px; background:#fff; }
.small { font-size: .86rem; }
.muted { color: var(--muted); }
.center { text-align:center; }
.hidden { display:none !important; }
.pill-list { display:flex; flex-wrap:wrap; gap:8px; padding:0; list-style:none; }
.pill-list li { background:var(--pink-100); color:var(--berry); border-radius:999px; padding:8px 12px; font-weight:800; }
.logo-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:20px; }
.logo-option { background:#fff; border:2px solid var(--line); border-radius:20px; padding:16px; }
.logo-option img { width:100%; aspect-ratio:16/9; object-fit:contain; background:#f2f2f2; border-radius:12px; }
.logo-option.active { border-color:var(--pink-500); box-shadow:0 0 0 4px rgba(248,63,145,.12); }
.no-results { padding:28px; background:var(--pink-50); border-radius:18px; color:var(--muted); }
@media (max-width: 920px) {
  .hero-grid, .grid-4, .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-art { min-height: 430px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px) {
  .header-row { min-height:72px; }
  .brand-link { min-width:0; }
  .brand-logo { width:175px; height:52px; }
  .nav-toggle { display:inline-flex; }
  .site-nav { display:none; position:absolute; top:72px; left:16px; right:16px; padding:14px; flex-direction:column; align-items:stretch; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
  .site-nav.open { display:flex; }
  .site-nav a { text-align:center; }
  .hero { padding-top:44px; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .form-grid, .footer-grid, .logo-grid { grid-template-columns:1fr; }
  .hero-art { min-height:390px; }
  .field-full { grid-column:auto; }
  h1 { font-size:3rem; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior:auto !important; transition:none !important; } }
