:root {
  --ink: #11131a;
  --muted: #696a70;
  --soft: #f6f6f3;
  --line: #deded8;
  --accent: #9d1730;
  --paper: #ffffff;
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(157, 23, 48, .14); }

.site-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #ecece7;
  background: rgba(255, 255, 255, .96);
}
.nav-inner {
  width: min(1120px, calc(100% - 56px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img {
  display: block;
  width: 180px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.nav-links a {
  color: #6a6b70;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .16s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { color: var(--ink); }

.page {
  width: min(920px, calc(100% - 56px));
  margin: 76px auto 0;
  padding: 0 0 56px;
}
.brand,
.label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: #0e103f;
  font-size: clamp(2.9rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .98;
}
h2, h3 { color: var(--ink); }
.sub {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.intro {
  max-width: 740px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.intro p { line-height: 1.75; }

.home-logo {
  display: block;
  width: min(480px, 92%);
  margin: 28px 0 52px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.count-unit {
  padding: 22px 12px 20px 0;
  border-right: 1px solid var(--line);
}
.count-unit:last-child { border-right: 0; padding-left: 20px; }
.count-unit:not(:first-child) { padding-left: 20px; }
.count-unit strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.9rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}
.count-unit span {
  display: block;
  margin-top: 8px;
  color: #88898d;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.launch-date {
  margin: 18px 0 0;
  color: #8a8b90;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.contact-card { margin-top: 26px; }
.email-row { display: flex; gap: 8px; }
.email-row input[type="email"] {
  min-width: 0;
  flex: 1 1 auto;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #cecec8;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.email-row input[type="email"]:focus { border-color: var(--ink); }
.email-row button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary {
  margin-top: 10px;
  background: #fff;
  color: var(--ink);
}
.status { min-height: 1.4em; color: var(--muted); font-size: .78rem; }
.status.error { color: #a3162d; }
.status.success { color: #24613d; }
.honeypot { position: absolute !important; left: -9999px !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
details { border-bottom: 1px solid var(--line); }
summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary strong { font-size: 1rem; }
summary span { color: #7c7d82; font-size: .78rem; }
summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  margin-left: 16px;
  color: var(--accent);
  font-weight: 800;
}
details[open] summary::after { content: "−"; }
.card { padding: 4px 0 34px; }
.card h3 {
  margin: 28px 0 12px;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.desc { max-width: 760px; }
.card p,
.card li { color: #4e5056; font-size: .9rem; line-height: 1.72; }
.card ul { padding-left: 20px; }
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 28px 0;
  border-top: 1px solid #e6e6e1;
}
.facts div {
  padding: 12px 0;
  border-bottom: 1px solid #e6e6e1;
  color: #55565b;
  font-size: .78rem;
}
.facts b {
  display: block;
  margin-bottom: 4px;
  color: #8b8c90;
  font-size: .62rem;
  letter-spacing: .1em;
}
.apply {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.page-footer {
  margin-top: 78px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: #77787d;
  font-size: .76rem;
  line-height: 1.7;
}
.page-footer a { color: inherit; }


/* Home store discovery */
.home-shop {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
  margin-top: 84px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.home-shop-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #0e103f;
  font-size: clamp(2.3rem, 5.4vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .96;
}
.home-shop-copy > p:last-of-type {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.78;
}
.home-shop-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 28px;
}
.home-shop-actions .button { margin: 0; }
.home-shop-actions span {
  color: #85868b;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.home-shop-visual {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.home-shop-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #e4e4df;
  background: var(--soft);
  object-fit: cover;
  transition: transform .28s ease, border-color .18s ease;
}
.home-shop-visual:hover img,
.home-shop-visual:focus-visible img { transform: translateY(-2px); border-color: #8a8b90; }
.home-shop-visual > span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  color: #85868b;
  font-size: .64rem;
  line-height: 1.5;
}
.home-shop-visual b { color: var(--ink); font-weight: 800; letter-spacing: .08em; }
.home-shop-visual em { font-style: normal; }
.home-footer { display: flex; justify-content: space-between; gap: 28px; }

/* Policy pages */
.policy-page { max-width: 920px; }
.policy-header { max-width: 790px; }
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #85868b;
  font-size: .68rem;
}
.policy-meta strong { color: #55565b; }
.policy-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px 72px;
  margin-top: 58px;
}
.policy-index {
  position: sticky;
  top: 28px;
  align-self: start;
  border-top: 1px solid var(--line);
}
.policy-index a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #ecece7;
  color: #74757a;
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
}
.policy-index a:hover,
.policy-index a:focus-visible { color: var(--ink); }
.policy-content { min-width: 0; }
.policy-section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid #e7e7e2;
  scroll-margin-top: 28px;
}
.policy-section:last-child { margin-bottom: 0; }
.policy-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -.025em;
}
.policy-section p,
.policy-section li {
  color: #56575c;
  font-size: .86rem;
  line-height: 1.78;
}
.policy-section p { margin: 14px 0 0; }
.policy-section ul { margin: 14px 0 0; padding-left: 20px; }
.policy-section a { color: var(--accent); font-weight: 700; }

@media (max-width: 720px) {
  .nav-inner { width: min(100% - 36px, 1120px); min-height: 66px; gap: 16px; }
  .nav-logo img { width: 148px; height: 38px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .68rem; }
  .page { width: min(100% - 36px, 920px); margin-top: 54px; padding-bottom: 40px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .count-unit:nth-child(2) { border-right: 0; }
  .count-unit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .count-unit:nth-child(3) { padding-left: 0; }
  .email-row { flex-direction: column; }
  .home-shop { grid-template-columns: 1fr; gap: 38px; margin-top: 68px; }
  .home-shop-visual { max-width: 620px; }
  .home-footer { display: block; }
  .home-footer span { display: block; }
  .policy-grid { grid-template-columns: 1fr; gap: 34px; }
  .policy-index { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-index a:nth-child(odd) { padding-right: 12px; }
  summary { grid-template-columns: minmax(0, 1fr) 18px; }
  summary span { grid-column: 1; margin-top: 5px; }
  .facts { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { width: calc(100% - 28px); }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: .64rem; }
  .nav-logo img { width: 128px; height: 34px; }
  .page { width: calc(100% - 32px); }
  .sub { font-size: .92rem; }
}
