:root {
  --ink: #182326;
  --muted: #657276;
  --line: #d9e1df;
  --soft: #f4f7f6;
  --mint: #dcefe8;
  --accent: #0e756d;
  --accent-dark: #07544f;
  --orange: #eb7f4e;
  --max: 1220px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.sp-topline { padding: 10px 24px; background: var(--ink); color: #e7f3ef; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sp-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 26px; min-height: 76px; padding: 14px clamp(18px, 4vw, 56px); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.sp-brand { flex: 0 0 auto; text-decoration: none; font-size: 20px; font-weight: 900; letter-spacing: .08em; }
.sp-brand span { color: var(--accent); }
.sp-nav { display: flex; flex: 1 1 auto; justify-content: center; gap: clamp(14px, 2.5vw, 32px); min-width: 0; }
.sp-nav a { flex: 0 0 auto; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 700; white-space: nowrap; }
.sp-nav a:hover, .sp-nav a:focus-visible { color: var(--accent); }
.sp-actions { display: flex; align-items: center; gap: 10px; }
.sp-actions a { text-decoration: none; font-size: 13px; font-weight: 800; }
.sp-button, .sp-actions .sp-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--accent); background: var(--accent); color: white; font-weight: 800; text-decoration: none; cursor: pointer; }
.sp-button:hover, .sp-button:focus-visible { background: var(--accent-dark); border-color: var(--accent-dark); }
.sp-button--light { background: white; color: var(--accent-dark); }
.sp-button--light:hover, .sp-button--light:focus-visible { background: var(--mint); }

.sp-main { overflow: clip; }
.sp-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); max-width: var(--max); min-height: 620px; margin: 0 auto; padding: clamp(40px, 7vw, 94px) clamp(18px, 4vw, 48px); align-items: center; gap: clamp(28px, 5vw, 76px); }
.sp-eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.sp-hero h1 { max-width: 650px; margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.sp-hero h1 em { color: var(--accent); font-style: normal; }
.sp-hero p { max-width: 540px; margin: 24px 0 28px; color: var(--muted); font-size: clamp(16px, 2vw, 20px); }
.sp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sp-hero-media { position: relative; min-height: 460px; }
.sp-hero-media img { width: 100%; height: min(58vw, 560px); min-height: 420px; object-fit: cover; border-radius: 28px; box-shadow: 26px 26px 0 var(--mint); }
.sp-hero-note { position: absolute; left: -18px; bottom: 24px; max-width: 230px; padding: 16px 18px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 16px 34px rgba(24,35,38,.12); }
.sp-hero-note strong { display: block; font-size: 14px; }
.sp-hero-note small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.sp-section { max-width: var(--max); margin: 0 auto; padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 48px); }
.sp-section--soft { max-width: none; background: var(--soft); }
.sp-section--soft > * { max-width: calc(var(--max) - 96px); margin-left: auto; margin-right: auto; }
.sp-section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.sp-section h2 { max-width: 690px; margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; letter-spacing: -.04em; }
.sp-section-head > p { max-width: 420px; margin: 0; color: var(--muted); }

.sp-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sp-product-card { overflow: hidden; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.sp-product-card-media { aspect-ratio: 1 / 1; overflow: hidden; background: #eef3f1; }
.sp-product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sp-product-card:hover img { transform: scale(1.04); }
.sp-product-card-body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 18px; }
.sp-product-card-body small { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sp-product-card-body h3 { margin: 0; font-size: 18px; line-height: 1.1; }
.sp-product-card-body p { margin: 0; color: var(--muted); font-size: 13px; }
.sp-product-card-body .sp-button { width: 100%; margin-top: auto; border-radius: 10px; }
.sp-load-more { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 56px; margin-top: 22px; }
.sp-load-more .sp-button { min-height: 40px; border-radius: 10px; font-size: 12px; }
.sp-load-more .sp-button[hidden] { display: none; }
.sp-load-more span { color: var(--muted); font-size: 12px; }
.sp-product-sentinel { height: 1px; width: 100%; }

.sp-option-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.sp-option { min-height: 150px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.sp-option--media, .sp-option--product { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.sp-option-media { aspect-ratio: 4 / 3; overflow: hidden; background: #eef3f1; }
.sp-option-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sp-option--media:hover .sp-option-media img { transform: scale(1.04); }
.sp-option-copy { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 20px; }
.sp-option-copy .sp-button { margin-top: auto; width: 100%; border-radius: 10px; }
.sp-option--product .sp-option-media img { object-fit: contain; background: #f7faf9; }
.sp-option b { display: block; margin-bottom: 12px; color: var(--accent); font-size: 12px; letter-spacing: .12em; }
.sp-option h3 { margin: 0 0 8px; font-size: 17px; }
.sp-option p { margin: 0; color: var(--muted); font-size: 13px; }
.sp-swatch { width: 44px; height: 44px; margin-bottom: 16px; border-radius: 10px; border: 1px solid rgba(24,35,38,.12); background: #d7d3cc; }
.sp-swatch--kraft { background: #cda878; }
.sp-swatch--black { background: #263034; }
.sp-swatch--white { background: #fff; }
.sp-swatch--foil { background: linear-gradient(135deg,#f6e4a5,#ae7a17,#fff1ae); }
.sp-swatch--corrugated { background: repeating-linear-gradient(90deg,#b98b5f 0 4px,#dfc19d 4px 8px); }
.sp-swatch--molded { background: radial-gradient(circle at 30% 35%,#e9e0cf 0 18%,transparent 19%),#d0c5b1; }

.sp-material-visuals { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
.sp-material-visuals figure { margin: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; }
.sp-material-visuals img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.sp-material-visuals figcaption { padding: 11px 13px; font-size: 12px; font-weight: 800; }

.sp-showcase { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 24px; align-items: stretch; }
.sp-showcase-main { overflow: hidden; border-radius: var(--radius); background: #e8efed; }
.sp-showcase-main img { width: 100%; height: auto; min-height: 440px; aspect-ratio: 4 / 3; object-fit: cover; }
.sp-showcase-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sp-showcase-side figure { margin: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; }
.sp-showcase-side img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.sp-showcase-side figcaption { padding: 12px; font-size: 12px; font-weight: 800; }

.sp-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sp-step { min-height: 320px; padding: 0; overflow: hidden; background: #fff; border-right: 1px solid var(--line); }
.sp-step > img { width: 100%; height: auto; aspect-ratio: 1.35; object-fit: contain; background: #f7faf9; border-bottom: 1px solid var(--line); }
.sp-step > div { padding: 20px 22px 24px; }
.sp-step:last-child { border-right: 0; }
.sp-step span { display: block; margin-bottom: 28px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.sp-step h3 { margin: 0 0 8px; font-size: 17px; }
.sp-step p { margin: 0; color: var(--muted); font-size: 13px; }

.sp-quote-wrap { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(26px, 5vw, 76px); align-items: start; }
.sp-quote-intro { position: sticky; top: 106px; }
.sp-quote-intro p { color: var(--muted); }
.sp-quote-intro ul { padding: 0; margin: 24px 0 0; list-style: none; }
.sp-quote-intro li { padding: 11px 0 11px 24px; border-bottom: 1px solid var(--line); font-size: 14px; position: relative; }
.sp-quote-intro li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.sp-quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: clamp(20px, 4vw, 34px); background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.sp-quote-form label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 800; }
.sp-quote-form input, .sp-quote-form select, .sp-quote-form textarea { width: 100%; min-height: 44px; padding: 11px 12px; color: var(--ink); background: white; border: 1px solid #cfdad7; border-radius: 9px; font: inherit; font-size: 14px; }
.sp-quote-form textarea { min-height: 120px; resize: vertical; }
.sp-quote-form .full { grid-column: 1 / -1; }
.sp-quote-form .form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; }
.sp-quote-form .sp-button { min-height: 50px; border-radius: 10px; }

.sp-payment { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sp-payment article { overflow: hidden; padding: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.sp-payment article > img { width: 100%; height: auto; aspect-ratio: 1.25; object-fit: contain; background: #f7faf9; border-bottom: 1px solid var(--line); }
.sp-payment article > div { padding: 22px; }
.sp-payment h3 { margin: 0 0 8px; font-size: 17px; }
.sp-payment p { margin: 0; color: var(--muted); font-size: 13px; }
.sp-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px clamp(22px, 5vw, 54px); background: var(--accent-dark); border-radius: var(--radius); color: white; }
.sp-cta h2 { max-width: 560px; color: white; }
.sp-cta p { margin: 10px 0 0; color: #d6ebe6; }
.sp-cta .sp-button { flex: 0 0 auto; background: white; border-color: white; color: var(--accent-dark); }
.sp-footer { display: flex; justify-content: space-between; gap: 18px; padding: 30px clamp(18px, 4vw, 56px); color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }
.sp-footer strong { color: var(--ink); }

@media (max-width: 980px) {
  .sp-header { gap: 14px; }
  .sp-nav { gap: 14px; }
  .sp-nav a:nth-child(n+4) { display: none; }
  .sp-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sp-option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-material-visuals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-hero { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sp-topline { padding-inline: 12px; font-size: 9px; }
  .sp-header { position: relative; flex-wrap: wrap; padding: 14px 18px; }
  .sp-nav { order: 3; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; overflow-y: hidden; padding-top: 5px; padding-bottom: 3px; scrollbar-width: thin; }
  .sp-nav a:nth-child(n+4) { display: inline; }
  .sp-actions a:not(.sp-button) { display: none; }
  .sp-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 54px; }
  .sp-hero-media { min-height: 0; }
  .sp-hero-media img { height: min(105vw, 500px); min-height: 0; box-shadow: 12px 12px 0 var(--mint); }
  .sp-hero-note { left: 12px; bottom: 12px; }
  .sp-section-head { display: block; }
  .sp-section-head > p { margin-top: 12px; }
  .sp-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sp-product-card-body { padding: 13px; }
  .sp-product-card-body h3 { font-size: 15px; }
  .sp-option-copy { padding: 13px; }
  .sp-material-visuals { gap: 10px; }
  .sp-showcase { grid-template-columns: 1fr; }
  .sp-showcase-main img { min-height: 300px; }
  .sp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-step { min-height: 0; }
  .sp-step > div { padding: 15px 13px 17px; }
  .sp-step span { margin-bottom: 18px; }
  .sp-step:nth-child(2) { border-right: 0; }
  .sp-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sp-quote-wrap { grid-template-columns: 1fr; }
  .sp-quote-intro { position: static; }
  .sp-quote-form { grid-template-columns: 1fr; }
  .sp-quote-form .full { grid-column: auto; }
  .sp-payment { grid-template-columns: 1fr; }
  .sp-cta { display: block; }
  .sp-cta .sp-button { margin-top: 20px; }
  .sp-footer { display: block; }
  .sp-footer > * + * { margin-top: 8px; }
}
.buyer-order-fields{margin:0;color:var(--muted);font-size:11px;line-height:1.45}.buyer-order-fields strong{color:var(--ink);font-weight:800}
