/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: #f8f6f1; font-family: 'Manrope', sans-serif; color: #1a1a18; overflow-x: hidden; }

/* ── Typography ─────────────────────────────────────────────── */
.font-display { font-family: 'Instrument Serif', serif; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,246,241,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid #e9e4d9;
}
.site-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav__logo {
  text-decoration: none;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.02em;
  color: #1a1a18;
}
.site-nav__logo span { color: #2563eb; }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav__link {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: #57534e;
  transition: color .15s;
}
.site-nav__link:hover,
.site-nav__link--active { font-weight: 700; color: #1a1a18; }
.site-nav__cta {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #f8f6f1;
  background: #1a1a18;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity .15s;
}
.site-nav__cta:hover { opacity: .85; }

/* Mobile nav */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.site-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a18;
  border-radius: 2px;
}
.site-nav__mobile-menu {
  display: none;
  border-top: 1px solid #e9e4d9;
  background: #f8f6f1;
  padding: 12px 28px 22px;
  flex-direction: column;
  gap: 0;
}
.site-nav__mobile-menu.open { display: flex; }
.site-nav__mobile-link {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a18;
  padding: 12px 4px;
  border-bottom: 1px solid #ece7dc;
}
.site-nav__mobile-cta {
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #f8f6f1;
  background: #1a1a18;
  padding: 13px 20px;
  border-radius: 8px;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: flex; }
}
@media (min-width: 761px) {
  .site-nav__mobile-menu { display: none !important; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn--dark {
  color: #f8f6f1;
  background: #1a1a18;
  border: none;
  padding: 13px 24px;
  font-size: 15px;
}
.btn--outline {
  color: #1a1a18;
  background: transparent;
  border: 1px solid #d6cfc1;
  padding: 13px 24px;
  font-size: 15px;
}
.btn--lg { padding: 15px 30px; font-size: 15.5px; border-radius: 9px; }

/* ── Product rows ────────────────────────────────────────────── */
.prow {
  text-decoration: none;
  color: inherit;
  flex: 1 1 420px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 12px;
  margin: 0 -12px;
  border-radius: 12px;
  transition: background .15s;
}
.prow:hover { background: #fffdf8; }
.prow:hover .parrow { transform: translateX(4px); color: #2563eb; }
.parrow { font-size: 22px; color: #b3a892; transition: transform .2s, color .2s; }

/* ── Form fields ─────────────────────────────────────────────── */
.fld {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #1a1a18;
  background: #fffdf9;
  border: 1px solid #d6cfc1;
  border-radius: 9px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fld::placeholder { color: #a59c8b; }
.fld:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
select.fld {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b6457' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-body p { font-size: 15.5px; line-height: 1.72; color: #44403a; margin: 0 0 14px; }
.legal-body li { font-size: 15.5px; line-height: 1.7; color: #44403a; margin: 0 0 8px; }
.toc-link { text-decoration: none; font-size: 14px; line-height: 1.4; color: #6b6457; transition: color .15s; }
.toc-link:hover { color: #2563eb; }

/* ── Label chip ──────────────────────────────────────────────── */
.label-chip {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9a8f7d;
}

/* ── Product cards ───────────────────────────────────────────── */
.product-card {
  background: #fffdf9;
  border: 1px solid #e7e0d3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .18s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  box-shadow: 0 8px 36px rgba(26,26,24,.1);
  transform: translateY(-3px);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
}
.product-card__placeholder {
  width: 100%;
  aspect-ratio: 1200 / 630;
}
.product-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card--sm .product-card__body { padding: 16px 18px 18px; }

/* ── Statement descriptor mockup ────────────────────────────── */
.descriptor-card {
  background: #fffdf9;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 18px 20px 20px;
}
.descriptor-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a8f7d;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
}
.descriptor-card__screen {
  background: #f3f0e8;
  border: 1px solid #e7e0d3;
  border-radius: 9px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.descriptor-card__bank-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #b0a898;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}
.descriptor-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13.5px;
  color: #1a1a18;
  letter-spacing: .04em;
}
.descriptor-card__amount { color: #c0392b; }
.descriptor-card__note {
  font-size: 12.5px;
  color: #6b6457;
  line-height: 1.55;
  font-family: 'Manrope', sans-serif;
  margin: 0;
}
.descriptor-card__note strong { color: #1a1a18; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #14130f;
  color: #c9c2b4;
}
.site-footer a { color: #c9c2b4; text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: #f8f6f1; }
