:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --surface-soft: #fff0e1;
  --ink: #30241d;
  --muted: #7c695d;
  --line: #ecd9ca;
  --teal: #f28a2e;
  --teal-dark: #c95020;
  --orange: #ef573f;
  --shadow: 0 24px 70px rgba(112, 63, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--teal-dark);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--surface);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding: 72px 0 96px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy > p,
.section-heading p,
.split-section > div > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 19px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(115deg, #ffd45f, #ff9b2f 55%, #f15b40);
  color: #382116;
  box-shadow: 0 12px 30px rgba(239, 87, 63, 0.2);
}

.button-primary:hover {
  background: linear-gradient(115deg, #ffe07e, #ffaa45 55%, #f67457);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.small-note {
  color: var(--muted);
  font-size: 0.88rem !important;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 138, 46, 0.24);
  border-radius: 26px;
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -110px;
  right: -80px;
  border-radius: 50%;
  background: #ffd7b3;
}

.card-heading {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.card-heading h2 {
  margin: 0;
  font-size: 1.75rem;
}

.count,
.status {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.count {
  background: var(--surface-soft);
  color: var(--teal-dark);
}

.sample-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.sample-item:last-child {
  padding-bottom: 0;
}

.item-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.sample-item div {
  display: grid;
}

.sample-item div span {
  color: var(--muted);
  font-size: 0.86rem;
}

.available {
  background: #fff0df;
  color: #c95020;
}

.reserved {
  background: #fff0db;
  color: #9b5715;
}

.bought {
  background: #f4e5dd;
  color: #80513f;
}

.content-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.steps,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.feature-grid article,
.use-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.steps article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd45f, #ff9b2f 58%, #f15b40);
  color: #382116;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(239, 87, 63, 0.2);
}

.steps p,
.feature-grid p,
.use-grid p,
.faq-list p,
footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.use-grid .occasion-card {
  position: relative;
  min-height: 180px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.use-grid .occasion-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -42px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(255, 155, 47, 0.1);
}

.use-grid .occasion-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 138, 46, 0.42);
  box-shadow: 0 18px 38px rgba(112, 63, 28, 0.11);
}

.occasion-card h3 {
  margin-bottom: 8px;
}

.occasion-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff3df, #ffd4ad);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(242, 138, 46, 0.16);
}

.occasion-icon svg {
  width: 52px;
  height: 52px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occasion-holidays {
  background: linear-gradient(145deg, #fff1dc, #ffc98e);
  color: #b94622;
}

.occasion-wedding {
  background: linear-gradient(145deg, #fff5e9, #f4ded1);
  color: #9a5238;
}

.occasion-shopping {
  background: linear-gradient(145deg, #fff1d2, #ffd45f);
  color: #9f4a1f;
}

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

.feature-grid article {
  min-height: 180px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  padding-top: 14px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 30px 0 100px;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--surface-soft);
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 40px 0 55px;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

.article-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.article-main h1 {
  font-size: clamp(2.7rem, 7vw, 4.8rem);
}

.article-main h2 {
  margin-top: 58px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.article-main p,
.article-main li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-main li + li {
  margin-top: 10px;
}

.article-lead {
  font-size: 1.2rem !important;
}

@media (max-width: 900px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-card {
    max-width: 620px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-header,
  main,
  footer,
  .article-main {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 0;
    gap: 52px;
    padding: 50px 0 70px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-card {
    border-radius: 18px;
    padding: 19px;
  }

  .sample-item {
    grid-template-columns: 36px 1fr;
  }

  .status {
    grid-column: 2;
    justify-self: start;
  }

  .content-section {
    padding: 72px 0;
  }

  .steps,
  .feature-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .steps article > span {
    width: 44px;
    height: 44px;
    margin-bottom: 25px;
  }

  .use-grid .occasion-card {
    min-height: 150px;
  }

  .final-cta,
  footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .use-grid .occasion-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
  }

  .occasion-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .occasion-icon svg {
    width: 43px;
    height: 43px;
  }
}
