:root {
  --ink: #2f2018;
  --muted: #79695f;
  --soft: #a06f4d;
  --accent: #df8b2d;
  --accent-strong: #c67422;
  --paper: #fffaf3;
  --paper-deep: #f7eadb;
  --line: #ead7c2;
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(82, 52, 27, 0.14);
  --radius: 28px;
  color-scheme: light;
  font-family:
    "Figtree",
    "Avenir Next",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(223, 139, 45, 0.12), transparent 30%),
    linear-gradient(180deg, #fff8ee 0%, #fbf2e8 44%, #fffdf9 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 215, 194, 0.72);
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-link img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(142, 83, 36, 0.18);
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(160, 111, 77, 0.1);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 720px;
  padding: 88px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 253, 249, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  margin-top: 22px;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 90px);
  font-weight: 700;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #5f4f45;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fffaf3;
  background: linear-gradient(180deg, #eda045 0%, #d98224 100%);
  box-shadow: 0 14px 34px rgba(207, 119, 29, 0.28);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.72);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(234, 215, 194, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.58);
}

.phone-wrap {
  position: relative;
  justify-self: center;
}

.phone {
  width: min(355px, 78vw);
  padding: 14px;
  border: 1px solid rgba(234, 215, 194, 0.9);
  border-radius: 48px;
  background: #f4dfc7;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 650px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(160, 111, 77, 0.08);
}

.screen-hero {
  padding: 30px 24px 18px;
  background:
    linear-gradient(rgba(47, 32, 24, 0.05), rgba(47, 32, 24, 0.05)),
    linear-gradient(135deg, #f5d7b5, #fff6eb);
}

.screen-logo {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 32px;
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(98, 62, 30, 0.16);
}

.screen-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.04;
}

.screen-subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.memory-card-preview {
  margin: 18px;
  padding: 16px 16px 28px;
  background: #fffdfa;
  box-shadow: 0 18px 42px rgba(82, 52, 27, 0.12);
}

.memory-photo {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fbf2e8;
}

.memory-photo img {
  width: 42%;
  opacity: 0.56;
}

.memory-title {
  margin-top: 18px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
}

.memory-date {
  margin-top: 7px;
  text-align: center;
  color: #b5a298;
  font-size: 12px;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 18px 22px;
}

.mini-tile {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff7ed;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.feature-card,
.policy-card,
.premium-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 44px rgba(82, 52, 27, 0.08);
}

.feature-card {
  min-height: 210px;
  padding: 26px;
}

.feature-card h3,
.policy-card h3,
.premium-card h3 {
  font-size: 21px;
}

.feature-card p,
.policy-card p,
.premium-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-mark {
  width: 34px;
  height: 6px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--accent);
}

.premium-band {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(223, 139, 45, 0.48);
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 20%, rgba(223, 139, 45, 0.2), transparent 28%),
    rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
}

.premium-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.premium-card {
  padding: 30px;
  background: rgba(255, 250, 243, 0.85);
}

.premium-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
}

.premium-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.premium-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3a2a22;
  font-weight: 800;
}

.premium-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, #fff 50% 62%, transparent 64%),
    linear-gradient(180deg, #eda045, #d98224);
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.policy-card {
  padding: 24px;
}

.page-hero {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 42px;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.content {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.content-card {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
}

.content h2 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

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

.content p,
.content li {
  color: #5f4f45;
}

.content ul {
  padding-left: 22px;
}

.content li + li {
  margin-top: 6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, 620px);
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero {
    width: min(100% - 28px, 620px);
    min-height: auto;
    padding: 54px 0 62px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .phone-screen {
    min-height: 590px;
  }

  .feature-grid,
  .policy-strip,
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .section,
  .premium-band,
  .page-hero,
  .content,
  .footer-inner {
    width: min(100% - 28px, 620px);
  }

  .premium-band {
    padding: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
