:root {
  --topbar-height: 74px;
  --ink: #2a241f;
  --ink-soft: #5a524b;
  --paper: #ffffff;
  --sand: #f5f3f0;
  --sand-dark: #ece8e2;
  --green: #79b941;
  --green-dark: #5d972f;
  --cta: #f3b423;
  --cta-dark: #e1a216;
  --line: #e2ded9;
  --shadow: 0 20px 40px rgba(26, 20, 16, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--topbar-height);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--sand) 60%, #f1eeea 100%);
  line-height: 1.6;
}

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

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

.wrapper {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  font-family: "Oswald", "Impact", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--ink);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--cta), var(--cta-dark));
  color: #2a220e;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  border: 1px solid #d08f12;
  box-shadow: 0 12px 22px rgba(225, 161, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(225, 161, 22, 0.42);
}

.hero {
  padding: 44px 0 30px;
  text-align: center;
}

.hero__title {
  font-family: "Oswald", "Impact", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 0.03em;
}

.hero__subtitle {
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 18px;
}

.hero__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 18px auto 20px;
  max-width: 760px;
  font-weight: 600;
  color: var(--ink-soft);
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
}

.section {
  padding: 34px 0;
}

.section--muted {
  background: var(--sand-dark);
}

.section__title {
  font-family: "Oswald", "Impact", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  text-align: center;
  margin: 0 0 14px;
}

.section__lead {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 auto 18px;
  max-width: 780px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
}

.highlight {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.summary {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-weight: 600;
  color: var(--ink-soft);
}

.badge {
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}

.order {
  padding: 40px 0;
}

.order__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.order__card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.order__badge {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}

.order__body {
  padding: 16px 16px 20px;
  display: grid;
  gap: 10px;
}

.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
  font-weight: 700;
}

.price del {
  color: #9c8f85;
}

.price strong {
  font-size: 1.6rem;
}

.field {
  background: #f6f4f1;
  border: 1px solid #e0dbd5;
  border-radius: 4px;
  padding: 10px 12px;
  color: #8a8179;
  font-size: 0.95rem;
}

input.field {
  width: 100%;
  font-family: inherit;
  color: #2d2d2d;
}

input.field::placeholder {
  color: #8a8179;
}

.order__form {
  display: grid;
  gap: 10px;
}

.order__form label {
  display: block;
  margin: 0 0 6px;
}

.order__form .cta {
  width: 100%;
}

.form-help {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #7b736b;
  font-size: 0.86rem;
}

.form-help--error {
  color: #b42318;
}

.order__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.order__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

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

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.related a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.related a:hover {
  color: var(--ink);
}

.notice {
  border: 1px dashed #c93030;
  padding: 14px 18px;
  text-align: center;
  margin: 20px auto 0;
  max-width: 720px;
  background: #fff;
}

.notice h4 {
  margin: 0 0 6px;
  color: #c93030;
  font-family: "Oswald", "Impact", sans-serif;
}

.meta-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.reference {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.reference h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reference a {
  color: var(--ink);
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  :root {
    --topbar-height: 140px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    text-align: left;
  }

  .badge-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    align-items: stretch;
  }

  .nav {
    width: 100%;
  }

  .cta {
    width: 100%;
  }
}
