@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0d0f13;
  --panel: #141821;
  --panel-soft: #1a202b;
  --surface: #f6f1e7;
  --surface-strong: #efe4d2;
  --text: #11131a;
  --text-soft: #5f6470;
  --line: rgba(17, 19, 26, 0.1);
  --line-dark: rgba(255, 255, 255, 0.08);
  --accent: #b48b50;
  --accent-deep: #8f6b38;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(180, 139, 80, 0.14), transparent 28%),
    linear-gradient(180deg, #fcf8f1 0%, #f4eee3 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(252, 248, 241, 0.88);
  border-bottom: 1px solid rgba(17, 19, 26, 0.06);
}

.nav-shell {
  margin: 14px auto;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(17, 19, 26, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #f5efe5;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #101217;
  color: var(--white);
  font-weight: 700;
}

.brand-copy small,
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9b8a6f;
}

.brand-copy strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: #fcfaf5;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--white);
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #bc9357 0%, #9a733f 100%);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-color: rgba(17, 19, 26, 0.08);
}

.button-dark {
  background: #11151d;
  color: var(--white);
}

.hero {
  padding: 48px 0 24px;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  color: #6c624f;
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 0;
  max-width: 10ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.signal-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.signal-strip article {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.signal-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.signal-strip p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-panel,
.section-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(17, 19, 26, 0.08);
}

.hero-panel-head strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.hero-panel-body {
  padding: 20px 22px 24px;
}

.gift-focus {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #181c24 0%, #101319 100%);
  color: var(--white);
}

.gift-focus .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.gift-focus h2 {
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.gift-focus p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.gift-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.gift-meta div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.gift-meta strong {
  display: block;
  font-size: 14px;
}

.gift-meta span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 24px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
}

.grid-3,
.grid-4,
.keyword-grid {
  display: grid;
  gap: 18px;
}

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

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

.plain-block {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.plain-block h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plain-block p,
.page-copy p,
.page-copy li,
.faq-item p {
  color: var(--text-soft);
  line-height: 1.8;
}

.trust-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.aside-cta .trust-note,
.final-cta .trust-note,
.gift-focus .trust-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.page-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.page-copy,
.aside-cta {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.page-copy h2 {
  margin: 28px 0 12px;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy ul {
  padding-left: 18px;
}

.page-copy li {
  margin: 8px 0;
}

.aside-cta {
  position: sticky;
  top: 108px;
  background: linear-gradient(180deg, #181c24 0%, #11141a 100%);
  color: var(--white);
}

.aside-cta p,
.aside-cta li {
  color: rgba(255, 255, 255, 0.74);
}

.aside-cta h3 {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.list-tight {
  padding-left: 18px;
}

.list-tight li {
  margin: 8px 0;
}

/* ─── Feature highlight cards ─── */
.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5efe5 0%, #ede3cf 100%);
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ─── Claim steps ─── */
.claim-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.claim-step {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
  position: relative;
}

.claim-step .step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #101217;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.claim-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.claim-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ─── Claim banner (full-width dark CTA) ─── */
.claim-banner {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #181c24 0%, #101319 100%);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.claim-banner-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.claim-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 560px;
}

.claim-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Related services grid ─── */
.related-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-card {
  display: block;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.related-card h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.related-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

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

.related-links {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}


.final-cta {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: linear-gradient(180deg, #171b23 0%, #101319 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 14px 0 0;
  max-width: 14ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.final-cta p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.footer-note {
  color: var(--text-soft);
  font-size: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.footer {
  padding: 28px 0 50px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 19, 26, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .aside-cta {
    position: static;
  }

  .grid-4,
  .keyword-grid,
  .signal-strip,
  .related-links,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .claim-banner {
    grid-template-columns: 1fr;
  }

  .claim-banner-actions {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .topbar {
    position: static;
  }

  .nav-shell {
    margin: 10px auto;
    border-radius: 22px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
  }

  .brand {
    width: 100%;
    padding: 10px 12px;
  }

  .brand-copy small {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 6px;
    padding: 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav-cta {
    width: 100%;
    gap: 8px;
  }

  .nav-cta .button {
    flex: 1;
    min-width: 0;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding: 20px 0 12px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
    margin-top: 16px;
    font-size: clamp(34px, 12vw, 52px);
    line-height: 0.96;
  }

  .hero p,
  .page-hero p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .pill {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
    text-align: center;
  }

  .hero-actions,
  .stack-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button,
  .stack-actions .button {
    width: 100%;
  }

  .gift-meta,
  .grid-3,
  .grid-4,
  .keyword-grid,
  .signal-strip,
  .related-links,
  .feature-grid,
  .claim-steps,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .page-copy,
  .aside-cta,
  .hero-panel-body,
  .hero-panel-head,
  .plain-block,
  .faq-item {
    padding: 20px;
  }

  .hero-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel-head strong {
    font-size: 28px;
  }

  .gift-focus {
    padding: 16px;
    border-radius: 20px;
  }

  .gift-focus h2 {
    font-size: 26px;
  }

  .section {
    padding: 16px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.04;
  }

  .section-head p {
    font-size: 16px;
  }

  .page-grid {
    gap: 18px;
  }

  .page-copy h2 {
    margin: 22px 0 10px;
    font-size: 28px;
  }

  .page-copy ul,
  .list-tight {
    padding-left: 16px;
  }

  .trust-note {
    padding: 14px;
    font-size: 13px;
    line-height: 1.7;
  }

  .claim-banner {
    padding: 22px;
    gap: 18px;
  }

  .claim-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .claim-banner-actions .button {
    width: 100%;
  }

  .footer {
    padding: 18px 0 34px;
  }

  .footer-shell {
    align-items: flex-start;
    padding-top: 18px;
  }

  .footer-links {
    gap: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-shell {
    border-radius: 18px;
  }

  .nav {
    padding: 10px;
  }

  .brand {
    gap: 10px;
    padding: 10px;
  }

  .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .nav-cta {
    flex-direction: column;
  }

  .nav-cta .button {
    width: 100%;
    flex: initial;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(30px, 11vw, 42px);
  }

  .hero p,
  .page-hero p,
  .section-head p,
  .plain-block p,
  .page-copy p,
  .page-copy li,
  .faq-item p {
    font-size: 15px;
    line-height: 1.72;
  }

  .button {
    min-height: 46px;
  }

  .hero-panel-head strong,
  .final-cta h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .gift-focus h2,
  .page-copy h2 {
    font-size: 24px;
  }

  .plain-block h3,
  .aside-cta h3 {
    font-size: 22px;
  }

  .hero-panel-head,
  .hero-panel-body,
  .page-copy,
  .aside-cta,
  .plain-block,
  .faq-item,
  .feature-card,
  .claim-step,
  .related-card,
  .final-cta {
    padding: 16px;
  }

  .signal-strip article,
  .gift-meta div {
    padding: 14px;
  }

  .footer-note {
    font-size: 13px;
    line-height: 1.65;
  }
}
