/* =========================================================
   ブランドカラー提案アプリ（カラー診断ツールと同じパレット）
   ========================================================= */
:root {
  --pale-blue:   #B8D4E3;
  --misty-white: #F5F7F9;
  --soft-gray:   #C7CCD1;
  --dusty-blue:  #8FA8B8;
  --pearl-white: #F4F1EA;
  --cta:         #7B9ACC;
  --cta-deep:    #4A6DA7;
  --cta-darker:  #3C5C90;
  --label:       #5B7183;

  --ink:       #2E3A45;
  --ink-muted: #5F6E7A;

  --wrap:   1000px;
  --radius: 14px;

  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

html { color-scheme: light; }
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--misty-white);
  -webkit-font-smoothing: antialiased;
}

p, li, h1, h2, h3 { word-break: auto-phrase; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 640px); }

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

/* ========================= ヘッダー ========================= */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #fff;
}
.header-inner { min-height: 60px; display: flex; align-items: center; }
.brand { font-family: var(--serif); font-size: 0.9375rem; letter-spacing: 0.08em; }

/* ========================= イントロ ========================= */
.intro {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: radial-gradient(70% 80% at 50% 0%, var(--pale-blue) 0%, transparent 62%), var(--misty-white);
}
.eyebrow { margin: 0 0 1rem; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.22em; color: var(--label); }
.intro h1 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.625rem, 5.2vw, 2.5rem);
  font-weight: 600; line-height: 1.7; letter-spacing: 0.06em;
}
.lead { margin: 0; font-size: 0.9375rem; line-height: 2; color: var(--ink-muted); }

/* ========================= ステップ ========================= */
.step { padding: 0 0 clamp(2rem, 5vw, 3rem); }
.step-in { animation: stepIn 0.5s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.step-num {
  margin: 0 0 0.4rem; text-align: center; font-size: 0.6875rem;
  font-weight: 700; letter-spacing: 0.2em; color: var(--label);
}
.step-label {
  margin: 0 0 1.5rem; text-align: center;
  font-family: var(--serif); font-size: clamp(1.25rem, 3.6vw, 1.5rem);
  font-weight: 600; letter-spacing: 0.05em;
}

.btn-back {
  display: block; margin: 1.75rem auto 0; padding: 0.5em 1.2em;
  border: none; background: none; color: var(--label);
  font-family: var(--sans); font-size: 0.8125rem; letter-spacing: 0.04em; cursor: pointer;
}
.btn-back:hover { color: var(--cta-deep); text-decoration: underline; }

/* ========================= 選択肢 ========================= */
.choices {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.choice {
  padding: 1em 1.1em;
  border: 1px solid var(--soft-gray); border-radius: 999px;
  background: #fff; color: var(--ink);
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.choice:hover {
  border-color: var(--cta); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 109, 167, 0.12);
}
.choice:focus-visible { outline: 3px solid var(--cta-deep); outline-offset: 2px; }

/* 「まだ決まっていない」ボタン */
.undecided {
  display: block; margin: 1rem auto 0; padding: 0.8em 2em;
  border: 1px dashed var(--dusty-blue); border-radius: 999px;
  background: #fff; color: var(--label);
  font-family: var(--sans); font-size: 0.875rem; letter-spacing: 0.03em; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.undecided:hover { background: var(--pearl-white); }
.undecided:focus-visible { outline: 3px solid var(--cta-deep); outline-offset: 2px; }

/* その他（自由記入） */
.other-box {
  margin-top: 1.5rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--radius);
}
.other-label {
  display: block; margin-bottom: 0.6rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--label);
}
.other-row { display: flex; gap: 0.6rem; }
.other-input {
  flex: 1; min-width: 0;
  padding: 0.7em 1em; font: inherit;
  border: 1px solid var(--soft-gray); border-radius: 8px; background: var(--misty-white);
}
.other-input:focus { outline: 2px solid var(--cta-deep); outline-offset: 1px; border-color: transparent; }
.other-btn {
  flex: none;
  padding: 0.7em 1.4em; border: none; border-radius: 8px;
  background: var(--cta-deep); color: #fff;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.03em; cursor: pointer;
  transition: background 0.2s;
}
.other-btn:hover { background: var(--cta-darker); }
@media (max-width: 480px) {
  .other-row { flex-direction: column; }
  .other-btn { width: 100%; }
}

/* ========================= 結果 ========================= */
#result { margin-bottom: clamp(3rem, 8vw, 5rem); scroll-margin-top: 1rem; }
.result-card {
  padding: clamp(1.75rem, 5vw, 3rem);
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(46, 58, 69, 0.08);
}
.result-eyebrow {
  margin: 0 0 0.5rem; text-align: center;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.22em; color: var(--label);
}
.result-title {
  margin: 0 0 2.5rem; text-align: center;
  font-family: var(--serif); font-size: clamp(1.375rem, 4.4vw, 1.875rem);
  font-weight: 600; line-height: 1.6; letter-spacing: 0.05em;
}

.block-title {
  margin: 0 0 1rem; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--label); padding-left: 0.7rem; border-left: 3px solid var(--pale-blue);
}

/* 3色の配色 */
.palette {
  display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2.5rem;
}
.swatch {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px; padding: 1rem;
  border-radius: 12px; border: 1px solid rgba(46, 58, 69, 0.08);
}
.swatch-role {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; opacity: 0.9;
  margin-bottom: auto;
}
.swatch-name { font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; margin-top: 0.5rem; }
.swatch-hex { font-size: 0.75rem; letter-spacing: 0.08em; opacity: 0.85; }
@media (max-width: 560px) {
  .palette { grid-template-columns: 1fr; gap: 0.75rem; }
  .swatch { min-height: 96px; }
}

.two-col {
  display: grid; gap: 1.5rem 2rem; grid-template-columns: 1fr 1.4fr;
  margin-bottom: 2.5rem;
}
.balance {
  margin: 0 0 0.3rem;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em;
}
.balance-note { margin: 0; font-size: 0.75rem; color: var(--ink-muted); }
.chosen { margin: 0; font-size: 0.9375rem; line-height: 1.9; color: var(--ink); }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }

.reason { margin: 0; font-size: 0.9375rem; line-height: 2.1; color: var(--ink-muted); }
.reason b { color: var(--ink); }
.memo {
  margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--misty-white);
  font-size: 0.875rem; color: var(--ink-muted);
}
.memo b { color: var(--ink); }

.result-actions { margin-top: 2.5rem; text-align: center; }
.btn-restart {
  padding: 0.9em 2.6em; border: 1px solid var(--cta-deep); border-radius: 999px;
  background: #fff; color: var(--cta-deep);
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-restart:hover { background: var(--cta-deep); color: #fff; }

/* Threadsフォローへの案内（中央ぞろえ） */
.cta-box {
  margin-top: 2.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 120% at 50% 0%, var(--pale-blue) 0%, rgba(184, 212, 227, 0) 70%),
    var(--misty-white);
}
.cta-heading {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 3.2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.cta-lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 2.05;
  color: var(--ink-muted);
}
.cta-btn {
  display: inline-block;
  padding: 1em 3em;
  border-radius: 999px;
  background: var(--cta-deep);
  color: #fff;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(74, 109, 167, 0.26);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: var(--cta-darker);
  box-shadow: 0 12px 28px rgba(74, 109, 167, 0.32);
  transform: translateY(-2px);
}
.cta-btn:focus-visible { outline: 3px solid var(--cta-deep); outline-offset: 3px; }
/* ボタンの下に置く、公式LINEへの控えめな導線（カラー診断ツールと同じ形） */
.cta-sub {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
}
.cta-sub a {
  color: var(--cta-deep);
  font-weight: 700;
  text-underline-offset: 0.2em;
  /* 「公式LINE」がリンクの途中で改行されないようにする */
  white-space: nowrap;
}
@media (max-width: 480px) {
  .cta-btn { display: block; width: 100%; padding-inline: 1rem; }
}

/* ========================= フッター ========================= */
.site-footer {
  padding: 2.5rem 0 3rem; text-align: center;
  border-top: 1px solid #fff; background: #fff;
}
.footer-note { margin: 0 auto 1.5rem; max-width: 34rem; font-size: 0.75rem; line-height: 1.9; color: var(--ink-muted); }
.footer-links { display: flex; gap: 1.75rem; justify-content: center; margin: 0 0 1rem; font-size: 0.875rem; }
.footer-links a { color: var(--ink-muted); text-decoration: none; }
.footer-links a:hover { color: var(--cta-deep); }
.copyright { margin: 0; font-size: 0.75rem; color: var(--ink-muted); }

@media (prefers-reduced-motion: reduce) {
  .choice:hover { transform: none; }
  .step-in { animation: none; }
}

/* 2026-09: 色見本帳をめくる、静かな対話 */
:root{--ink:#273e4b;--ink-muted:#586a74;--label:#526c7d;--cta-deep:#355e74;--cta-darker:#294858;--misty-white:#f6f5f1;--soft-gray:#d1dadd;--wrap:1000px}
[hidden]{display:none!important}body{background:#f6f5f1;line-height:1.75}button,input,a{-webkit-tap-highlight-color:transparent}button:focus-visible,a:focus-visible{outline:3px solid #355e74;outline-offset:4px}button:active{transform:translateY(1px)}
.site-header{background:transparent;border-bottom:1px solid #d9dedc;backdrop-filter:none}.header-inner{min-height:64px}.brand{font-family:var(--sans);font-size:13px}.header-inner:after{content:'COLOR DISCOVERY';margin-left:auto;font-size:10px;letter-spacing:.16em;color:var(--label)}
.intro{padding:44px 0 32px;background:none;text-align:left}.intro .narrow{position:relative;width:min(100% - 2.5rem,1000px);padding-right:240px}.intro h1{font-size:clamp(27px,3.5vw,38px);line-height:1.55;margin-bottom:16px}.eyebrow{font-size:10px;margin-bottom:14px}.lead{font-size:14px}.intro .narrow:after{content:'';position:absolute;right:12px;top:22px;width:166px;height:190px;border:9px solid white;border-bottom-width:35px;background:linear-gradient(90deg,#8fa8b8 0 52%,#e7dce2 52% 84%,#355e74 84%);box-shadow:0 12px 30px #273e4b13;transform:rotate(8deg)}
.journey{max-width:800px;margin-bottom:22px;scroll-margin-top:20px}.journey-top{display:flex;justify-content:space-between;gap:12px;font-size:11px;color:var(--label);margin-bottom:10px;letter-spacing:.07em}#progress-text{font-weight:700}.progress-track{height:3px;background:#dce2e2}#progress-fill{height:100%;width:20%;background:#355e74;transition:width .2s ease}
main>section.wrap{max-width:800px}.step{padding:30px 32px 26px;background:#fff;border:1px solid #dce2e2;border-radius:4px;box-shadow:0 8px 30px #273e4b04}.step-num{display:none}.step-label{text-align:left;font-size:24px;margin:0 0 8px;line-height:1.6}.step-label:focus,.result-title:focus{outline:none}.question-hint{font-size:12px;color:var(--ink-muted);margin:0 0 24px}.choices{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.choice{display:flex;align-items:center;gap:12px;position:relative;min-height:54px;text-align:left;padding:12px 36px 12px 16px;border:1px solid #d4dfe3;border-radius:5px;line-height:1.65;font-size:14px;font-weight:500;background:#fff}.choice:after{content:'→';position:absolute;right:14px;color:#738895}.choice:hover{background:#f0f5f7;border-color:#6d8b9c;box-shadow:none;transform:none}.choice[aria-pressed=true]{background:#edf3f5;border:2px solid #355e74;padding:11px 35px 11px 15px}.choice[aria-pressed=true]:after{content:'✓';color:#355e74}.color-dot{width:27px;height:27px;border-radius:50%;flex-shrink:0;border:1px solid #0001}.other-box{margin-top:22px;border:0;border-top:1px solid #e5e9e8;background:none;padding:18px 0 0;border-radius:0}.other-label{font-weight:500}.other-input{background:#fafbf9;font-size:16px}.other-btn{font-size:13px}.btn-back{margin:22px 0 0;padding:10px 0;font-size:13px;min-height:44px}.undecided{border-radius:5px;font-size:14px;min-height:48px}.in-progress .intro{padding:20px 0}.in-progress .intro h1{font-size:22px;margin:0}.in-progress .intro h1 br{display:none}.in-progress .intro .lead,.in-progress .intro .eyebrow,.in-progress .intro .narrow:after{display:none}.in-progress .intro .narrow{padding:0}
#result{margin-bottom:36px}.result-card{border-radius:4px;box-shadow:none;border:1px solid #dce2e2;padding:32px}.result-title{font-size:28px;margin-bottom:26px}.palette{gap:10px;margin-bottom:14px}.swatch{border-radius:4px;padding:16px;min-height:205px}.swatch-name{font-size:15px}.swatch-hex{font-family:monospace;opacity:1;font-size:13px}.copy-color{align-self:flex-start;margin-top:14px;color:inherit;border:1px solid currentColor;border-radius:4px;background:transparent;padding:8px 12px;font:inherit;font-size:12px;min-height:40px;cursor:pointer}.copy-all{display:block;border:1px solid #bdcdd4;border-radius:5px;background:white;color:var(--cta-deep);font:inherit;font-size:13px;padding:12px 18px;margin:0 auto 30px;cursor:pointer}.ratio-bar{display:flex;height:30px;overflow:hidden;border-radius:3px;margin-bottom:12px}.balance{font-family:var(--sans);font-size:20px}.two-col{grid-template-columns:1fr 1.25fr;gap:28px}.edit-answers{display:flex;flex-wrap:wrap;gap:4px;margin-top:10px}.edit-answers button{border:0;background:transparent;color:var(--cta-deep);text-decoration:underline;text-underline-offset:4px;min-height:44px;padding:6px;font:inherit;font-size:12px;cursor:pointer}.cta-box{background:#eef3f4;border-radius:4px;padding:24px;margin-top:30px}.cta-btn{font-size:14px;box-shadow:none;border-radius:5px}.cta-lead{margin-bottom:20px;font-size:14px}.btn-restart{border-radius:5px;font-size:14px}.site-footer{background:transparent;border:0;padding:32px 0}.footer-note{font-size:12px;max-width:600px}.footer-links{font-size:13px}.footer-links a{padding:10px;min-height:44px}#feedback:empty{display:none}#feedback{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);z-index:10;background:#273e4b;color:white;padding:12px 20px;border-radius:6px;max-width:calc(100% - 32px);width:max-content;font-size:13px;box-shadow:0 5px 25px #0002}
@media(max-width:600px){.wrap,.intro .narrow{width:calc(100% - 32px)}.header-inner{min-height:54px}.brand{font-size:11px}.header-inner:after{font-size:8px}.intro{padding:28px 0 24px}.intro .narrow{padding-right:0}.intro .narrow:after{width:65px;height:88px;border:5px solid white;border-bottom-width:17px;right:6px;top:12px}.intro h1{font-size:27px;padding-right:76px;line-height:1.65}.lead{font-size:12px;line-height:1.9}.journey-top{font-size:10px}.journey-top>span:last-child{font-size:9px;letter-spacing:0}.journey{margin-bottom:16px}.step{padding:22px 16px}.step-label{font-size:21px}.question-hint{font-size:11px;margin-bottom:18px}.choices{gap:8px}.choice{font-size:12px;min-height:62px;padding:10px 22px 10px 10px;gap:7px;letter-spacing:0}.choice:after{right:8px;font-size:11px}.choice[aria-pressed=true]{padding:9px 21px 9px 9px}#wish-choices{grid-template-columns:1fr}#wish-choices .choice{min-height:46px;font-size:13px}.color-dot{width:21px;height:21px}.in-progress .intro h1{font-size:19px;padding:0}.result-card{padding:22px 16px}.result-title{font-size:24px}.palette{grid-template-columns:1fr;gap:10px}.swatch{min-height:132px;position:relative;padding:14px 92px 14px 14px}.swatch-name{font-size:15px}.copy-color{position:absolute;right:12px;bottom:14px}.two-col{grid-template-columns:1fr;gap:22px}.copy-all{font-size:12px;width:100%;padding-inline:6px}.cta-heading{font-size:18px}.cta-box{padding:22px 16px}}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;animation:none!important;transition:none!important}}

/* ヘッダーの名称を右上へ */
.header-inner{justify-content:flex-end}.header-inner:after{content:none}.brand{font-family:var(--sans);font-size:13px;letter-spacing:.03em}
@media(max-width:600px){.brand{font-size:12px}}
.method-note{max-width:800px;font-size:14px;line-height:1.9;margin-top:0;margin-bottom:24px;color:var(--ink-muted)}.choice-group-title{grid-column:1/-1;font-size:14px;color:var(--label);margin:12px 0 2px;border-bottom:1px solid #e3e8e8;padding-bottom:8px}.choice-group-title:first-child{margin-top:0}.other-box.is-selected{border-top:2px solid #355e74}.other-box.is-selected .other-label:after{content:' · 選択中';font-weight:700;color:#355e74}.undecided[aria-pressed=true]{border:2px solid #355e74;background:#edf3f5}.question-hint{font-size:14px;line-height:1.8}.color-reasons{margin:0}.color-reasons>div{margin:0 0 20px}.color-reasons dt{font-weight:700;font-size:15px;margin-bottom:6px}.color-reasons dd{margin:0;font-size:15px;line-height:1.9;color:var(--ink-muted)}.brand-intent{border-top:1px solid #dde3e3;padding-top:18px;margin-top:24px}.brand-intent h3{font-size:15px}.brand-intent p{font-size:15px}.small-note,.brand-intent .small-note{font-size:13px;line-height:1.9;color:var(--ink-muted)}.usage-section{border-top:1px solid #dde3e3;padding-top:26px;margin-top:30px}.usage-layout{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:22px;align-items:center}.social-example{padding:20px;aspect-ratio:1;display:flex;flex-direction:column;justify-content:space-between}.sample-label{font-size:12px}.sample-main{padding:24px;margin-top:18px}.sample-main>span{font-size:10px;letter-spacing:.15em}.sample-main strong{display:block;font-size:25px;line-height:1.7;margin-top:12px;font-family:var(--serif)}.social-example p{font-size:13px}.sample-accent{display:block;height:7px;width:60px}.usage-list{list-style:none;padding:0;margin:0}.usage-list li{margin:0 0 22px;font-size:14px}.usage-list b,.usage-list span{display:block}.usage-list span{margin-top:5px;color:var(--ink-muted);line-height:1.8}.save-palette{display:block;margin:12px auto 0;padding:14px 20px;background:var(--cta-deep);color:white;border:0;border-radius:5px;font:inherit;font-size:15px;cursor:pointer}.save-note{font-size:13px;text-align:center;color:var(--ink-muted);margin:12px 0 28px}.copy-all{margin-bottom:0}.balance-note{font-size:13px}.edit-answers button{font-size:14px}.copy-color{font-size:14px;min-height:44px}.save-palette:hover{background:var(--cta-darker)}
@media(max-width:600px){.choice{font-size:14px;min-height:68px}#wish-choices .choice{font-size:14px;min-height:52px}.question-hint{font-size:13px}.journey-top{font-size:12px}.journey-top>span:last-child{display:none}.other-btn{min-height:44px}.usage-layout{grid-template-columns:1fr}.sample-main strong{font-size:28px}.save-palette{width:100%;font-size:14px}.swatch{padding-right:98px}.method-note{font-size:13px}.lead{font-size:14px}.brand{font-size:13px}}
.save-dialog{width:min(620px,calc(100% - 24px));max-height:90vh;overflow:auto;border:1px solid #cbd6da;border-radius:6px;padding:24px;color:var(--ink);background:#fff}.save-dialog::backdrop{background:#172e3d99}.save-dialog h2{font-size:21px;margin:0 0 18px}.save-dialog img{width:100%;height:auto}.save-dialog a{text-align:center;text-decoration:none}.save-dialog .btn-back{margin-top:12px}
.selection-summary{text-align:center;margin:-10px 0 12px;font-size:15px}.result-card>.edit-answers{justify-content:center;margin-bottom:28px}.reason-section{margin-top:30px}.reason-section p,.advice-section>p{font-size:15px;line-height:1.95}.tone-name{font-weight:700}.reason-section .usage-list{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.outfit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:24px 0 32px}.outfit-item{background:#f6f5f1;padding:20px 10px;text-align:center}.outfit-item b,.outfit-item span{display:block;font-size:13px;margin-top:8px}.garment{width:100px;height:120px;margin:8px auto 22px}.top{clip-path:polygon(30% 0,40% 10%,60% 10%,70% 0,100% 20%,88% 43%,77% 34%,77% 100%,23% 100%,23% 34%,12% 43%,0 20%)}.bottom{clip-path:polygon(18% 0,82% 0,92% 100%,56% 100%,50% 40%,44% 100%,8% 100%)}.scarf{clip-path:polygon(25% 0,65% 0,82% 90%,57% 100%,46% 48%,38% 92%,12% 82%)}.usage-section>.swatch{min-height:120px;max-width:400px}.advice-section{margin-top:28px;border-top:1px solid #dce2e2;padding-top:26px}.avoid-section{border-top:1px solid #dce2e2;margin-top:28px;padding-top:18px}.avoid-section summary{cursor:pointer;font-size:14px;padding:10px 0;min-height:44px}.avoid-colors{display:flex;gap:16px;flex-wrap:wrap;font-size:14px}.avoid-colors span{display:flex;align-items:center;gap:8px}.avoid-colors i{width:24px;height:24px;border-radius:50%;border:1px solid #0001}
@media(max-width:600px){.reason-section .usage-list{grid-template-columns:1fr;gap:0}.outfit-grid{gap:6px}.outfit-item{padding:14px 4px}.garment{width:70px;height:100px}.outfit-item b,.outfit-item span{font-size:12px}.intro h1{font-size:25px}.selection-summary{font-size:14px}}
