:root {
  --bg: #f5efe1;
  --paper: #fffaf0;
  --ink: #13212f;
  --muted: #526273;
  --line: rgba(19, 33, 47, 0.12);
  --brand: #b6412b;
  --brand-dark: #7e2618;
  --accent: #1f6f78;
  --card-shadow: 0 18px 50px rgba(19, 33, 47, 0.08);
  --max: 1120px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(182, 65, 43, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f5efe1 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  padding: 24px 0 12px;
}

.topbar-sticky {
  padding-top: 12px;
}

.utility-bar {
  background: #13212f;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.utility-inner a {
  color: white;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: var(--card-shadow);
}

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

.nav-strong a {
  color: var(--ink);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.hero-card,
.content-card,
.page-card,
.form-card {
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 28px;
  padding: 44px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 120, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

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

h3 {
  font-size: 1.2rem;
}

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

.hero-copy p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(182, 65, 43, 0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-block {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(245, 239, 225, 0.86));
  border: 1px solid var(--line);
}

.panel-block ul,
.checklist,
.policy-list,
.footnotes {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 20px 0 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.content-card,
.page-card,
.form-card {
  padding: 34px;
}

.three-up,
.two-up {
  display: grid;
  gap: 18px;
}

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

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

.mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.inventory-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.inventory-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.inventory-tab.active {
  background: rgba(182, 65, 43, 0.12);
  color: var(--brand-dark);
  border-color: rgba(182, 65, 43, 0.2);
}

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

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

.inventory-card,
.callout-card,
.special-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
}

.inventory-image {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.inventory-image-red {
  background: linear-gradient(135deg, #b6412b, #ee9d7c);
}

.inventory-image-blue {
  background: linear-gradient(135deg, #1f6f78, #9fdde3);
}

.inventory-image-gold {
  background: linear-gradient(135deg, #9b7a2e, #f4d27f);
}

.inventory-image-graphite {
  background: linear-gradient(135deg, #364553, #97a7b7);
}

.inventory-meta {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-line {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.payment-line,
.special-price {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.inventory-specs {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.inventory-specs li {
  margin-bottom: 8px;
}

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

.disclaimer-inline {
  font-size: 0.92rem;
}

.legal-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(19, 33, 47, 0.12);
  background: rgba(19, 33, 47, 0.05);
  color: var(--muted);
}

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

.list-plain li {
  margin-bottom: 10px;
  color: var(--muted);
}

.page-header {
  padding: 34px 0 18px;
}

.page-title {
  margin-bottom: 8px;
}

.legal h2 {
  margin-top: 30px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.note {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(31, 111, 120, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.disclosure-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(182, 65, 43, 0.06);
  border: 1px solid rgba(182, 65, 43, 0.15);
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.checkbox-row label {
  margin: 0;
  color: var(--muted);
}

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

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(19, 33, 47, 0.95);
  color: rgba(255, 255, 255, 0.9);
}

.footer-card a {
  color: white;
}

.muted-light {
  color: rgba(255, 255, 255, 0.72);
}

code {
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(19, 33, 47, 0.08);
}

@media (max-width: 920px) {
  .hero-card,
  .three-up,
  .two-up,
  .field-grid,
  .inventory-grid,
  .inventory-grid-large,
  .specials-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 28px;
  }

  .content-card,
  .page-card,
  .form-card {
    padding: 24px;
  }
}
