
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #f1f4ff;
  color: #2c2c2c;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }

/* ── Topbar ── */
.topbar {
  background: #1a2d5a;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Wrap ── */
.wrap { max-width: 980px; margin: 0 auto; padding: 0 18px; }

/* ── Section ── */
section { padding: 52px 0; }
section + section { border-top: 1px solid #dce3f5; }
.bg-w { background: #fff; }

/* ── Typography ── */
h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1a2d5a;
}
h2 {
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  font-weight: 400;
  color: #1a2d5a;
  margin-bottom: 10px;
}
h3 {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #1a2d5a;
  margin-bottom: 8px;
}
p {
  font-family: Arial, sans-serif;
  font-size: 0.93rem;
  color: #484848;
  margin-bottom: 12px;
  line-height: 1.72;
}
p:last-child { margin-bottom: 0; }

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7080b8;
  margin-bottom: 8px;
}

/* ── Divider ── */
.dv { width: 40px; height: 2px; background: #a8b4d8; margin: 14px 0 18px; }
.dv.c { margin-left: auto; margin-right: auto; }

/* ── Tags ── */
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag {
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #b0bcde;
  border-radius: 20px;
  padding: 4px 13px;
  color: #3a4a7a;
  background: rgba(255,255,255,0.6);
}

/* ── 2-col IMAGE PAIR (main layout) ── */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pair img,
.pair .img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pair .img-slot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(60,80,160,0.09);
  aspect-ratio: 1/1;
}
@media (max-width: 560px) {
  .pair { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Text + image 2col ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.split .si {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(60,80,160,0.09);
}
.split .si img { width: 100%; display: block; }
@media (max-width: 640px) {
  .split { grid-template-columns: 1fr; gap: 20px; }
  .split.rv .si { order: -1; }
}

/* ── Full img ── */
.fi {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(60,80,160,0.09);
  margin-bottom: 36px;
}
.fi img { display: block; width: 100%; }

/* ── Feature cards ── */
.fcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.fc {
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px rgba(60,80,160,0.07);
}
.fc .ico { font-size: 1.6rem; margin-bottom: 10px; }
.fc h4 {
  font-family: Arial, sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #1a2d5a;
  margin-bottom: 7px;
}
.fc p { font-size: 0.84rem; margin: 0; }

/* ── Occasion strip ── */
.occ {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0;
}
.oi {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  flex: 1 1 130px;
  max-width: 190px;
  box-shadow: 0 2px 10px rgba(60,80,160,0.08);
}
.oi .oco { font-size: 1.5rem; margin-bottom: 6px; }
.oi .ot {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #1a2d5a;
  margin-bottom: 4px;
}
.oi .od { font-family: Arial, sans-serif; font-size: 0.76rem; color: #666; }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.sc {
  background: #fff;
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(60,80,160,0.07);
}
.sn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1a2d5a;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.sc h4 {
  font-family: Arial, sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #1a2d5a;
  margin-bottom: 7px;
}
.sc p { font-size: 0.82rem; margin: 0; }

/* ── Spec list ── */
.specs { margin-top: 20px; }
.sr {
  display: flex;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #dce3f5;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  align-items: flex-start;
}
.sr:last-child { border-bottom: none; }
.sr:nth-child(even) { background: rgba(255,255,255,0.5); border-radius: 5px; }
.sk {
  font-weight: 700;
  color: #1a2d5a;
  min-width: 180px;
  flex-shrink: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.sv { color: #484848; }
@media (max-width: 520px) {
  .sr { flex-direction: column; gap: 3px; }
  .sk { min-width: unset; }
}

/* ── Pull quote ── */
.pq {
  background: #eaedfc;
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
  margin: 36px 0 0;
}
.pq blockquote {
  font-size: clamp(0.98rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: #1a2d5a;
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto;
}
.pq cite {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7080b8;
  margin-top: 12px;
}

/* ── FAQ ── */
.faq { margin-top: 22px; }
.fi2 {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 9px;
  box-shadow: 0 1px 8px rgba(60,80,160,0.06);
  overflow: hidden;
}
.fq {
  padding: 16px 20px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a2d5a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
  line-height: 1.45;
}
.fq .ar {
  font-size: 1.25rem;
  font-weight: 300;
  color: #7080b8;
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: 1px;
}
.fi2.open .fq .ar { transform: rotate(45deg); }
.fa {
  display: none;
  padding: 0 20px 16px;
  padding-top: 14px;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #484848;
  line-height: 1.72;
  border-top: 1px solid #edf0ff;
}
.fi2.open .fa { display: block; }

/* ── Util ── */
.tc { text-align: center; }
.mx { max-width: 620px; margin-left: auto; margin-right: auto; }
.mb28 { margin-bottom: 28px; }
.mb36 { margin-bottom: 36px; }
.mt16 { margin-top: 16px; }

/* ── Footer ── */
footer {
  background: #1a2d5a;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 38px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
footer strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .fn { margin-top: 16px; font-size: 0.7rem; opacity: 0.45; }
