:root {
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  --text: #122033;
  --muted: #5d6b7e;
  --line: rgba(18, 32, 51, 0.12);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --shadow-soft: 0 16px 44px rgba(18, 32, 51, 0.08);
  --shadow-card: 0 22px 60px rgba(18, 32, 51, 0.11);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1240px;
  --blue: #1e5a90;
  --blue-dark: #14385b;
  --gold: #e9a440;
  --gold-soft: #fff2db;
  --green: #2f7d58;
  --green-soft: #e7f5ec;
  --page-background: linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
  --header-background: rgba(249, 251, 253, 0.82);
  --ring: rgba(30, 90, 144, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page-background);
  line-height: 1.65;
}

body.page--premium {
  --blue: #235a8d;
  --blue-dark: #143a5d;
  --gold: #e7a03f;
  --page-background:
    radial-gradient(circle at top left, rgba(255, 228, 192, 0.55), transparent 22%),
    radial-gradient(circle at 88% 0%, rgba(198, 223, 255, 0.48), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

body.page--gift {
  --blue: #245f95;
  --blue-dark: #153b5f;
  --gold: #ea9645;
  --page-background:
    radial-gradient(circle at 0% 8%, rgba(255, 225, 189, 0.55), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(212, 228, 255, 0.44), transparent 24%),
    linear-gradient(180deg, #fff8f0 0%, #f5f7fb 100%);
}

body.page--day {
  --blue: #21647b;
  --blue-dark: #133d4b;
  --gold: #efaa51;
  --page-background:
    radial-gradient(circle at top left, rgba(229, 242, 232, 0.7), transparent 22%),
    radial-gradient(circle at 92% 0%, rgba(214, 231, 255, 0.4), transparent 24%),
    linear-gradient(180deg, #f3f8f7 0%, #edf2f6 100%);
}

body.overview-page {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
 h2,
 h3,
 h4,
 p,
 ul,
 ol {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.page-shell,
.overview-shell,
.site-header-inner,
.site-footer-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell,
.overview-shell {
  padding: 30px 0 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: var(--header-background);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.site-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: grid;
  gap: 4px;
}

.site-brand-small {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--muted);
  text-transform: uppercase;
}

.site-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 650;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.member-link {
  border: 1px solid rgba(18, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.site-nav a:focus-visible,
.member-link:focus-visible,
.button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible,
.overview-card-link:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(230, 242, 255, 0.95);
}

.site-nav a:focus:not(:focus-visible),
.member-link:focus:not(:focus-visible),
.button:focus:not(:focus-visible),
.button-secondary:focus:not(:focus-visible),
.button-ghost:focus:not(:focus-visible),
.overview-card-link:focus:not(:focus-visible) {
  outline: none;
}

.hero-frame,
.section-panel,
.overview-hero,
.overview-note,
.overview-card,
.footer-box,
.offer-card,
.feature-card,
.story-card,
.process-card,
.faq-card,
.timeline-card,
.trust-card,
.photo-panel,
.cta-panel,
.highlight-strip,
.quote-panel,
.story-panel {
  background: var(--surface);
  border: 1px solid rgba(18, 32, 51, 0.09);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
}

.hero-frame {
  overflow: hidden;
  padding: 34px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow,
.section-eyebrow,
.overview-kicker,
.page-kicker,
.badge,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow,
.section-eyebrow,
.overview-kicker,
.page-kicker,
.pill {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 32, 51, 0.08);
  color: var(--blue-dark);
}

.badge {
  background: rgba(232, 242, 255, 0.98);
  color: var(--blue-dark);
}

.badge--gold {
  background: var(--gold-soft);
  color: #86511b;
}

.badge--green {
  background: var(--green-soft);
  color: var(--green);
}

.hero-title,
.section-title,
.cta-title,
.footer-title,
.overview-hero h1,
.overview-card h3,
.offer-title,
.story-title,
.trust-title,
.faq-card h3,
.timeline-title,
.quote-title {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.hero-title {
  font-size: clamp(3.4rem, 6.1vw, 6.1rem);
  max-width: 11ch;
}

.hero-text,
.section-copy,
.offer-copy,
.process-copy,
.story-copy,
.trust-copy,
.timeline-copy,
.faq-copy,
.cta-copy,
.footer-copy,
.overview-copy,
.quote-copy {
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions,
.button-row,
.footer-actions,
.hero-chip-row,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.button-secondary,
.button-ghost,
.overview-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #6aaadd);
  box-shadow: 0 16px 34px rgba(30, 90, 144, 0.24);
}

.button-secondary {
  color: #26384a;
  background: linear-gradient(135deg, var(--gold), #f3c96e);
  box-shadow: 0 16px 34px rgba(233, 164, 64, 0.22);
}

.button-ghost,
.overview-card-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 32, 51, 0.12);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.overview-card-link:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.stat-value {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img {
  min-height: 560px;
  object-fit: cover;
  border-radius: 30px;
}

.hero-float {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 560px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-float h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-float p {
  margin-top: 8px;
  color: var(--muted);
}

.hero-chip-row {
  margin-top: 16px;
}

.pill {
  color: var(--text);
}

.highlight-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
  padding: 16px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 32, 51, 0.08);
}

.highlight-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.highlight-value {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  font-size: 1rem;
}

.section-block {
  padding-top: 28px;
}

.section-panel {
  padding: 30px;
}

.section-panel--contrast {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
}

.section-panel--contrast .section-copy,
.section-panel--contrast .cta-copy,
.section-panel--contrast .section-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.section-panel--contrast .trust-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(7, 22, 30, 0.18);
}

.section-panel--contrast .trust-title {
  color: var(--text);
}

.section-panel--contrast .trust-copy {
  color: var(--muted);
}

.section-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  max-width: 14ch;
}

.section-copy {
  max-width: 70ch;
}

.offer-grid,
.feature-grid,
.story-grid,
.process-grid,
.faq-grid,
.trust-grid,
.timeline-grid,
.overview-grid {
  display: grid;
  gap: 18px;
}

.offer-grid,
.feature-grid,
.trust-grid,
.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 22px;
}

.offer-card,
.feature-card,
.story-card,
.process-card,
.faq-card,
.trust-card,
.timeline-card,
.photo-panel,
.quote-panel,
.story-panel {
  overflow: hidden;
}

.offer-card img,
.feature-card img,
.photo-panel img,
.story-panel img,
.quote-panel img,
.overview-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-body,
.feature-body,
.story-body,
.process-body,
.faq-body,
.trust-body,
.photo-body,
.timeline-body,
.quote-body,
.overview-card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.offer-title,
.story-title,
.trust-title,
.timeline-title {
  font-size: 2rem;
}

.offer-meta,
.feature-meta {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.offer-meta li,
.feature-meta li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  color: var(--muted);
}

.offer-meta li:last-child,
.feature-meta li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.offer-meta strong,
.feature-meta strong {
  color: var(--text);
  font-weight: 760;
}

.feature-card,
.story-card,
.trust-card,
.process-card,
.faq-card,
.timeline-card {
  padding: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(232, 242, 255, 0.92);
  color: var(--blue-dark);
  box-shadow: inset 0 0 0 1px rgba(30, 90, 144, 0.08);
}

.icon-badge svg {
  width: 20px;
  height: 20px;
}

.process-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232, 242, 255, 0.92);
  color: var(--blue-dark);
  font-weight: 800;
}

.cta-panel {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
}

.page--gift .cta-panel {
  background: linear-gradient(135deg, #a65a26, var(--blue));
}

.page--day .cta-panel {
  background: linear-gradient(135deg, #154756, var(--blue));
}

.cta-title {
  font-size: clamp(2.4rem, 4.3vw, 4rem);
}

.cta-list {
  display: grid;
  gap: 14px;
}

.cta-list li,
.timeline-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.bullet {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-list li div strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.section-panel--contrast .timeline-list li div strong {
  color: #fff;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 0;
}

.quote-panel img {
  min-height: 100%;
}

.quote-body {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.96));
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(30, 90, 144, 0.18);
}

.quote-title {
  font-size: 2.35rem;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.story-panel img {
  min-height: 100%;
}

.story-body {
  padding: 28px;
}

.trust-grid .trust-card,
.process-grid .process-card,
.faq-grid .faq-card,
.story-grid .story-card {
  padding: 22px;
}

.trust-body,
.process-body,
.faq-body,
.story-body {
  padding: 0;
}

.faq-card h3 {
  font-size: 1.42rem;
  line-height: 1.02;
}

.page-footer {
  margin-top: 28px;
}

.footer-box {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  max-width: 46ch;
}

.overview-hero,
.overview-note {
  padding: 32px;
}

.overview-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  max-width: 12ch;
}

.overview-copy {
  margin-top: 16px;
  max-width: 70ch;
}

.overview-card {
  overflow: hidden;
}

.overview-card h3 {
  font-size: 2rem;
}

.overview-note {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.note-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.note-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.note-number {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232, 242, 255, 0.98);
  color: var(--blue-dark);
  font-weight: 800;
}


@media (max-width: 1120px) {
  .hero-layout,
  .quote-panel,
  .story-panel,
  .timeline-grid,
  .cta-panel,
  .overview-note,
  .offer-grid,
  .feature-grid,
  .story-grid,
  .process-grid,
  .faq-grid,
  .trust-grid,
  .overview-grid,
  .highlight-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 420px;
  }

  .site-header-inner {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .highlight-strip {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .overview-shell,
  .site-header-inner,
  .site-footer-inner {
    width: min(var(--content-width), calc(100% - 20px));
  }

  .hero-frame,
  .section-panel,
  .overview-hero,
  .overview-note,
  .offer-body,
  .feature-body,
  .story-card,
  .process-card,
  .faq-card,
  .trust-card,
  .timeline-body,
  .photo-body,
  .quote-body,
  .story-body,
  .footer-box,
  .highlight-strip,
  .cta-panel,
  .overview-card-body {
    padding: 20px;
  }

  .hero-title,
  .section-title,
  .cta-title,
  .overview-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-float {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .hero-media img {
    min-height: 320px;
  }

  .site-brand-title {
    font-size: 1.05rem;
  }
}
