/* Oshun Gift Cards — lander
   Navy #102246 · Gold #d4c18c / hover #c2ac72 (locked — never #c9a84c)
   Cream ivory grounds · Cormorant Garamond + Outfit
*/

:root {
  --navy: #102246;
  --navy-deep: #0a1833;
  --navy-soft: #1a3358;
  --gold: #d4c18c;
  --gold-hover: #c2ac72;
  --gold-soft: #d8cfb0;
  --gold-wash: rgba(212, 193, 140, 0.14);
  --cream: #faf8f5;
  --cream-deep: #f3efe6;
  --white: #ffffff;
  --ink: #102246;
  --ink-soft: #5a6578;
  --ink-muted: #7a8496;
  --line: rgba(16, 34, 70, 0.1);
  --line-gold: rgba(212, 193, 140, 0.45);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 50px rgba(16, 34, 70, 0.08);
  --shadow-gold: 0 16px 40px rgba(16, 34, 70, 0.12);
  --wrap: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--gold-hover); }
code {
  font-size: 0.88em;
  background: var(--cream-deep);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--gold);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.wrap-narrow { max-width: 720px; }

/* —— Review + promo ribbon —— */
.review-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #7a1f2b;
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

.promo-ribbon {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid var(--line-gold);
}
.promo-ribbon a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-ribbon a:hover { color: var(--gold); }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 1.55rem;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(16, 34, 70, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.brand:hover { color: var(--navy); }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--navy); }

.bar-ctas { display: flex; gap: 0.55rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
}
@media (max-width: 640px) {
  .brand-sub { display: none; }
  .bar-ctas .btn-ghost { display: none; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  padding: 0.85rem 1.55rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.74rem; }
.btn-lg { padding: 1rem 1.85rem; font-size: 0.86rem; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(212, 193, 140, 0.35);
}
.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-wash);
  color: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16, 34, 70, 0.28);
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background: rgba(16, 34, 70, 0.04);
  color: var(--navy);
}

.btn-dock-wa {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(16, 34, 70, 0.15);
}
.btn-dock-wa:hover {
  background: var(--cream);
  color: var(--navy);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(4rem, 10vw, 7rem);
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(212, 193, 140, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 50% at 12% 88%, rgba(26, 51, 88, 0.9), transparent 60%),
    linear-gradient(165deg, #0a1833 0%, #102246 48%, #0d1e3d 100%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
}
.hero-copy { max-width: 40rem; }
.hero-mark {
  display: flex;
  justify-content: center;
  opacity: 0.92;
}
.hero-mark img {
  width: min(240px, 55%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.kicker, .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 1.25rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lede {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40ch;
  margin: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  margin: 2rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.hero-meta a { color: var(--gold-soft); text-decoration: none; }
.hero-meta a:hover { color: var(--gold); }
.hero-meta .sep { opacity: 0.45; }

/* —— Sections —— */
.section { padding: clamp(3.5rem, 8vw, 5.75rem) 0; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--cream-deep); }
.section-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.section-head { max-width: 38rem; margin-bottom: 2.75rem; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.85rem;
}
.section-head .lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}
.section-head--light h2 { color: var(--white); }
.section-head--light .lede { color: rgba(255, 255, 255, 0.65); }
.section-navy .eyebrow { color: var(--gold); }

/* —— Gift module —— */
.gift-module {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-gold);
}
@media (max-width: 800px) {
  .gift-module { grid-template-columns: 1fr; }
}

.gift-visual {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gift-visual::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 193, 140, 0.22), transparent 70%);
  pointer-events: none;
}

.gift-card-face {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1.6 / 1;
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
  background:
    linear-gradient(145deg, rgba(212, 193, 140, 0.18), transparent 50%),
    linear-gradient(165deg, #0d1e3d, #102246);
  border: 1px solid rgba(212, 193, 140, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--gold);
}
.gift-logo {
  width: 140px;
  height: auto;
  opacity: 0.95;
}
.gift-face-label {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin: 0.85rem 0 0.15rem;
  letter-spacing: 0.02em;
}
.gift-face-sub {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.gift-face-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 193, 140, 0.55), transparent);
  margin: 0.75rem 0 0.5rem;
}
.gift-face-place {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.gift-body {
  padding: clamp(1.85rem, 4vw, 2.75rem);
}
.pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.gift-body h3 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 600;
  color: var(--navy);
  margin: 1rem 0 0.65rem;
}
.gift-body > p {
  margin: 0;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 48ch;
}
.gift-points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.gift-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
  border-bottom: 1px solid var(--line);
}
.gift-points li:last-child { border-bottom: none; }
.gift-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.promo-todo {
  margin-top: 1.15rem !important;
  font-size: 0.9rem;
  color: var(--gold-hover) !important;
  background: var(--cream-deep);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.gift-body .cta-row { margin-top: 1.5rem; }
.gift-call {
  margin: 1rem 0 0 !important;
  font-size: 0.9rem !important;
  color: var(--ink-muted) !important;
}
.gift-call a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Steps —— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  counter-reset: none;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.55rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--line-gold);
}
.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-hover);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--navy);
}
.step p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
}

/* —— Why —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 193, 140, 0.22);
  border-radius: var(--radius);
  padding: 1.75rem 1.55rem;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.why-card:hover {
  border-color: rgba(212, 193, 140, 0.5);
  background: rgba(212, 193, 140, 0.06);
}
.why-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.55rem;
}
.why-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}

/* —— FAQ —— */
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 1rem;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold-hover);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-item a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.faq-cta-soft {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.faq-cta-soft a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.25rem 0 6.5rem;
  border-top: 1px solid rgba(212, 193, 140, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
}
.footer-brand strong,
.footer-grid > div > strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.footer-brand span,
.footer-grid > div > a,
.footer-muted {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
}
.footer-grid > div > a:hover { color: var(--gold); }
.footer-muted { color: rgba(255, 255, 255, 0.4); margin-top: 0.25rem; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-base p { margin: 0; }

/* —— Sticky dock —— */
.sticky-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(16, 34, 70, 0.06);
}
.sticky-dock .btn { flex: 1; max-width: 240px; }

@media (min-width: 901px) {
  .sticky-dock { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 3.25rem; }
}

/* —— Motion bar / reveals —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .step:hover,
  .btn:hover { transform: none; }
}
