:root {
  --brand: #0F6E5C;
  --brand-dark: #0B2E4A;
  --brand-light: #EAF4F1;
  --bg: #F7FAF9;
  --card: #FFFFFF;
  --text: #1C2B29;
  --muted: #5B6B68;
  --border: #E1EBE8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--brand); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site {
  background: var(--brand-dark);
  color: #fff;
  padding: 16px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 700; font-size: 18px; }
.logo-badge { width: 34px; height: 34px; border-radius: 10px; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
nav.site a { color: #EAF4F1; text-decoration: none; font-size: 14px; margin-left: 18px; opacity: 0.9; }
nav.site a:hover { opacity: 1; text-decoration: underline; }

/* Hero */
.hero { padding: 56px 0 40px; text-align: center; background: linear-gradient(180deg, var(--brand-light) 0%, var(--bg) 100%); }
.hero h1 { font-size: 32px; color: var(--brand-dark); margin: 0 0 12px; }
.hero p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto 24px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; }
.btn.primary { background: var(--brand); color: #fff; }
.btn.secondary { background: #fff; color: var(--brand-dark); border: 1px solid var(--border); }

/* Collection grid */
.section-title { text-align: center; margin: 48px 0 8px; color: var(--brand-dark); font-size: 24px; }
.section-sub { text-align: center; color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; padding: 0 0 56px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 8px; box-shadow: 0 1px 2px rgba(11,46,74,0.04); transition: transform 0.15s ease; }
.card:hover { transform: translateY(-2px); }
.card .emoji { font-size: 28px; }
.card h3 { margin: 0; font-size: 18px; color: var(--brand-dark); }
.card p { margin: 0; font-size: 14px; color: var(--muted); }

/* Collection page */
.collection-hero { padding: 44px 0 28px; }
.collection-hero .feeling { display: inline-block; background: var(--brand-light); color: var(--brand-dark); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.collection-hero h1 { font-size: 28px; margin: 0 0 10px; color: var(--brand-dark); }
.collection-hero p.lead { font-size: 16px; color: var(--muted); max-width: 640px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 24px 0 40px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.product-card h4 { margin: 0 0 6px; font-size: 16px; color: var(--brand-dark); }
.product-card .claim { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 8px; }
.product-card p { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.product-card .placeholder-link { display: inline-block; font-size: 13px; font-weight: 600; color: #fff; background: var(--brand); padding: 8px 14px; border-radius: 8px; text-decoration: none; }
.product-card .todo { display: block; margin-top: 8px; font-size: 11px; color: #B45309; background: #FEF3C7; padding: 4px 8px; border-radius: 6px; }

.info-box { background: var(--brand-light); border-radius: 14px; padding: 20px 22px; margin: 24px 0; font-size: 14px; color: var(--brand-dark); }
.disclaimer { font-size: 12px; color: var(--muted); background: #FFF; border: 1px dashed var(--border); padding: 12px 16px; border-radius: 10px; margin: 32px 0; }

footer.site { border-top: 1px solid var(--border); margin-top: 40px; padding: 28px 0; text-align: center; font-size: 12px; color: var(--muted); }
footer.site a { color: var(--muted); }
