:root {
  --bg: #101722;
  --bg-soft: #182233;
  --surface: #f8f4ea;
  --surface-strong: #fffaf0;
  --ink: #17202d;
  --muted: #65717d;
  --line: rgba(248, 244, 234, 0.18);
  --paper-line: #ded4c2;
  --accent: #f0a84b;
  --accent-dark: #b9672d;
  --red: #c94d4d;
  --teal: #51a6a0;
  --blue: #5078bd;
  --green: #638f62;
  --violet: #7b679f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 970px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.08rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(16, 23, 34, 0.92);
  border-bottom: 1px solid var(--line);
  color: #fffaf0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 51px;
  height: 55px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #d7dfeb;
  font-size: 1rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid #ffd17a;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd17a 0%, var(--accent) 100%);
  color: #111824;
  font-weight: 900;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(17, 24, 36, 0.18),
    0 12px 28px rgba(240, 168, 75, 0.32);
}

.site-nav .nav-cta:hover {
  background: #ffe0a0;
  color: #111824;
  transform: translateY(-1px);
}

/* Shared layout */
.hero,
.section,
.cta-section,
.page-title,
.form-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.band {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: #eef2ef;
  border-top: 1px solid #d8dfd9;
  border-bottom: 1px solid #d8dfd9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-heading.compact {
  margin-bottom: 18px;
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #111824;
}

.button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.button.primary:hover {
  background: #ffd17a;
}

.button.secondary {
  border-color: rgba(248, 244, 234, 0.32);
  background: rgba(248, 244, 234, 0.08);
  color: #fffaf0;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hero */
.hero {
  width: 100%;
  max-width: none;
  min-height: 72vh;
  padding: clamp(96px, 11vw, 160px) max(20px, calc((100vw - 1160px) / 2)) clamp(86px, 9vw, 132px);
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 168, 75, 0.13), transparent 30%),
    linear-gradient(180deg, #101722 0%, #162131 100%);
  color: #fffaf0;
}

.hero-content {
  max-width: 920px;
}

.hero .eyebrow {
  color: #ffd17a;
}

.hero-copy,
.page-title p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d7dfeb;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-reassurance {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(215, 223, 235, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
}

/* Content grids */
.text-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 44px);
  max-width: 920px;
  color: var(--muted);
  font-size: 1.06rem;
}

.text-block p,
.category-card p,
.sourcing-grid p,
.trust-grid p,
.source-note,
.site-footer p,
.request-guidance p,
.request-panel p {
  margin: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.category-card,
.sourcing-grid article,
.trust-grid article,
.form-shell,
.quote-form,
.request-panel {
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: 0 18px 40px rgba(28, 32, 38, 0.07);
}

.category-card {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 3vw, 30px);
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 80px;
  height: 112px;
  border: 2px solid rgba(23, 32, 45, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), transparent),
    repeating-linear-gradient(0deg, rgba(23, 32, 45, 0.08) 0 8px, transparent 8px 16px);
  transform: rotate(5deg);
}

.category-card h3,
.category-card p,
.item-icon {
  position: relative;
  z-index: 1;
}

.category-card h3 {
  margin-top: 22px;
}

.category-card p {
  margin-top: 10px;
}

.item-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(23, 32, 45, 0.78);
  border-radius: 8px;
  background: #fff;
}

.disc-icon {
  border-radius: 999px;
}

.disc-icon::after,
.mascot-icon::after {
  content: "";
  place-self: center;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(23, 32, 45, 0.72);
  border-radius: 999px;
}

.book-icon::after,
.guide-icon::after,
.bundle-icon::after {
  content: "";
  align-self: stretch;
  width: 14px;
  border-right: 2px solid rgba(23, 32, 45, 0.28);
}

.charm-icon::after,
.ticket-icon::after,
.badge-icon::after {
  content: "";
  place-self: center;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(23, 32, 45, 0.72);
  border-radius: 5px;
  transform: rotate(45deg);
}

.art-books { border-top: 4px solid var(--red); }
.soundtracks { border-top: 4px solid var(--blue); }
.guidebooks { border-top: 4px solid var(--violet); }
.acrylic { border-top: 4px solid var(--teal); }
.popup { border-top: 4px solid var(--accent); }
.bonuses { border-top: 4px solid var(--green); }
.plushes { border-top: 4px solid #c57a9a; }
.bundles { border-top: 4px solid #8b7355; }

.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: 32px;
}

.sourcing-grid article {
  padding: clamp(26px, 3vw, 32px);
  border-top: 4px solid var(--blue);
}

.sourcing-grid p {
  margin-top: 12px;
}

.process-note {
  max-width: 840px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: #fff8e9;
  font-weight: 900;
}

.trust-grid article {
  padding: clamp(24px, 3vw, 30px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.check-list,
.x-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.check-list li::before {
  content: "+";
  color: var(--green);
}

.x-list li::before {
  content: "-";
  color: var(--red);
}

.source-note {
  max-width: 830px;
  font-size: 1.05rem;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 30px;
}

.source-list span {
  padding: 10px 14px;
  border: 1px solid #d8dfd9;
  border-radius: 8px;
  background: #fff;
  color: var(--bg-soft);
  font-weight: 800;
}

.trust-grid article {
  border-left: 4px solid var(--teal);
}

.trust-feature {
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #d7c5a8;
  border-left: 5px solid var(--teal);
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: 0 14px 34px rgba(28, 32, 38, 0.08);
}

.trust-feature p {
  max-width: 860px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

#trust .trust-feature {
  max-width: 860px;
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#trust .trust-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.compact-trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.compact-trust-grid article {
  padding: clamp(26px, 3vw, 32px);
}

.risk-section {
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid #efd8af;
  border-radius: 10px;
  background: #fff8e9;
}

.risk-section .x-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  font-size: 0.94rem;
}

.privacy-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

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

details {
  padding: 22px 26px;
  border: 1px solid #d8dfd9;
  border-radius: 10px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 56px);
  padding-block: clamp(64px, 8vw, 104px);
}

/* Request page */
.page-title {
  width: 100%;
  max-width: none;
  padding: clamp(48px, 8vw, 90px) max(18px, calc((100vw - 1120px) / 2)) 32px;
  background:
    radial-gradient(circle at 78% 20%, rgba(240, 168, 75, 0.14), transparent 26%),
    linear-gradient(180deg, #101722 0%, #162131 100%);
  color: #fffaf0;
}

.page-title .eyebrow {
  color: #ffd17a;
}

.page-title h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.form-shell {
  margin-bottom: clamp(54px, 8vw, 92px);
  padding: clamp(22px, 4vw, 38px);
}

.request-guidance h2,
.request-panel h2 {
  font-size: 1.4rem;
}

.request-guidance p,
.request-panel p {
  margin-top: 18px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.request-guidance,
.request-panel {
  padding: 22px;
  border-top: 4px solid var(--accent);
}

.request-guidance {
  position: sticky;
  top: 88px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fff8e9;
}

.quote-form {
  padding: clamp(20px, 4vw, 30px);
}

.quote-form.is-submitted {
  opacity: 0.42;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 2px solid;
  border-radius: 8px;
  font-weight: 900;
}

.form-status.loading {
  border-color: #d8b05f;
  background: #fff5d8;
  color: #5c4214;
}

.form-status.error {
  border-color: var(--red);
  background: #fff0f0;
  color: #742727;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.primary-request-field {
  gap: 10px;
  padding: 16px;
  border: 1px solid #efd8af;
  border-radius: 8px;
  background: #fff8e9;
}

.primary-request-field textarea {
  min-height: 176px;
}

.optional-detail-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  background: #f7fbf8;
  color: var(--muted);
  font-weight: 800;
}

.form-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field label span {
  color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc4b1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 11px 12px;
}

textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bg-soft) 50%),
    linear-gradient(135deg, var(--bg-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(240, 168, 75, 0.34);
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 1px var(--accent-dark);
}

input:required,
select:required,
textarea:required {
  border-left: 4px solid var(--accent);
}

input:required:invalid:not(:placeholder-shown),
textarea:required:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reassurance-text {
  color: var(--ink);
  font-weight: 800;
}

.acknowledgements {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-line);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 800;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--accent-dark);
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #efd8af;
  border-radius: 8px;
  background: #fff8e9;
}

.submit-row p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.support-note {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.support-note a {
  color: var(--accent-dark);
  font-weight: 900;
}

.request-success-panel {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid #d7c5a8;
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(81, 166, 160, 0.16), transparent 34%),
    #fffaf0;
  box-shadow: var(--shadow);
}

.request-success-panel:focus {
  outline: 3px solid rgba(81, 166, 160, 0.34);
  outline-offset: 4px;
}

.request-success-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.request-success-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.secondary-link {
  color: var(--accent-dark);
  font-weight: 900;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #101722;
  color: #fffaf0;
}

.site-footer p {
  margin-top: 8px;
  color: #d7dfeb;
}

.site-footer a {
  color: #fffaf0;
}

@media (max-width: 1060px) {
  .category-grid,
  .sourcing-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .text-block,
  .request-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .request-guidance {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
  }

  .page-title h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  input,
  select,
  textarea,
  .helper-text,
  .support-note,
  .request-guidance p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .category-grid,
  .sourcing-grid,
  .trust-grid,
  .risk-section .x-list {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .sourcing-grid,
  .trust-grid {
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }
}

#how-it-works {
  max-width: 1120px;
  margin-inline: auto;
}

#how-it-works .section-heading {
  max-width: 760px;
}

#how-it-works .section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  max-width: 980px;
  margin-top: 42px;
}

.process-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 36px);
  border: 1px solid #d8dfd9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(28, 32, 38, 0.055);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(24, 34, 51, 0.92);
  color: #d7923b;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.process-card p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

#how-it-works .process-note {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
