/* ColeMadeThat — vivid orange + scroll fix for sticky header */
:root {
  --bg: #09090b;
  --bg-elevated: #111111;
  --surface: #1a1a1a;
  --surface-2: #2d2d2d;
  --text: #f8f7f4;
  --text-muted: #9ca3af;
  --text-soft: #858481;
  --accent: #ff8800;
  --accent-bright: #ff9933;
  --accent-hover: #e67a00;
  --accent-subtle: rgba(255, 136, 0, 0.14);
  --accent-faint: rgba(255, 136, 0, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --black: #0a0a0a;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1140px;
  --header-h: 76px;
  /* In-page scroll targets: gap between sticky header bottom and first line (tune one place) */
  --anchor-gap: 0.75rem;
  --anchor-gap-top: 0.45rem;
  --anchor-gap-faq: 1rem;
  /* FAQ: pull landing up by ~1–2× “Common” line height without going under the header */
  --faq-anchor-lift: clamp(0.85rem, 1.65vw, 1.35rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* scroll-margin on .scroll-target handles offset — do not stack scroll-padding here */
  scroll-padding-top: 0;
}

.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;
}

#top {
  scroll-margin-top: calc(var(--header-h) + var(--anchor-gap-top));
}

/* Zero-size targets at the first line of each nav section — scroll-margin aligns that line just under the header */
.scroll-target {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  scroll-margin-top: calc(var(--header-h) + var(--anchor-gap));
}

#faq-anchor.scroll-target {
  /* max() keeps at least header + small gap so “Common” never hides under the sticky bar */
  scroll-margin-top: max(
    calc(var(--header-h) + 0.35rem),
    calc(var(--header-h) + var(--anchor-gap-faq) - 2 * var(--faq-anchor-lift))
  );
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-bright);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  padding-block: 0.75rem;
  padding-inline: clamp(1rem, 3vw, 1.75rem);
}

.site-header .logo {
  grid-column: 1;
  margin-left: 0.35rem;
}

.site-header .nav-desktop {
  grid-column: 2;
  justify-self: center;
}

.site-header .header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.15rem;
}

@media (max-width: 899px) {
  .site-header .nav-desktop,
  .site-header .nav-cta-header {
    display: none !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
  flex-shrink: 0;
}

.logo-cap {
  color: #fff;
}

/* Header logo: stay white on hover (override global a:hover orange) */
.site-header a.logo:hover,
.site-header a.logo:focus-visible {
  color: #fff !important;
}

.site-header a.logo:hover .logo-cap,
.site-header a.logo:focus-visible .logo-cap {
  color: #fff !important;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-desktop a:not(.nav-cta) {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.nav-desktop a.nav-anchor {
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.nav-desktop a.nav-anchor:hover,
.nav-desktop a.nav-anchor:focus-visible {
  color: #fff;
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.nav-desktop a.nav-anchor.is-active {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.nav-mobile a.nav-anchor.is-active {
  color: var(--accent);
}

.nav-cart {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent) !important;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.nav-cart:hover,
.nav-cart:focus-visible {
  border-color: var(--accent);
}

.nav-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  line-height: 0;
  color: var(--accent) !important;
}

.nav-cart-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.nav-cart-icon:hover svg,
.nav-cart-icon:focus-visible svg {
  stroke: var(--accent-bright);
}

.nav-cta-header {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-cta-header:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: rgba(9, 9, 11, 0.84);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background-color: #09090b;
  background: #09090b;
  opacity: 1;
  backdrop-filter: none;
  padding: calc(var(--header-h) + 0.75rem) 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 0;
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a.nav-anchor:hover,
.nav-mobile a.nav-anchor:focus-visible {
  color: var(--accent);
  background: transparent;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .site-header .menu-toggle {
    display: none !important;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* —— Type —— */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin: 0 0 0.5rem;
}

.section-label .accent-word {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.accent-word {
  color: var(--accent);
}

.lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 1.25rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--black);
  color: #fff !important;
}

.btn-dark:hover {
  background: #222;
  color: #fff !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

/* Quote form kept in DOM for future use — hidden from layout */
#quote.quote-section {
  display: none !important;
}

.social-proof-legacy {
  display: none !important;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.bg-elevated {
  background: var(--bg-elevated);
}

.bg-surface {
  background: var(--surface);
}

.bg-white {
  background: var(--white);
  color: var(--black);
}

section.bg-white#services {
  position: relative;
  z-index: 1;
}

.bg-white .lead,
.bg-white .section-label {
  color: #4b5563;
}

.bg-white h2,
.bg-white h3 {
  color: var(--black);
}

.bg-white .accent-word {
  color: var(--accent);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 0;
  border-bottom: 3px solid var(--accent);
  overflow-x: visible;
  /* Kill 1px hairline gap before white #services section */
  margin-bottom: -2px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.45) 45%, rgba(9, 9, 11, 0.25) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
  background-color: #1a1816;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* Slightly more top padding so hero copy sits lower and uses the viewport more naturally */
  padding: clamp(1rem, 2.8vw, 1.65rem) 0 clamp(0.5rem, 1.5vw, 0.85rem);
}

.hero-content {
  max-width: min(40rem, 100%);
  margin-left: clamp(1.25rem, 6vw, 4.5rem);
  padding-right: 1rem;
  flex: 0 0 auto;
}

.hero-title-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.hero-title-stack .hero-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.35rem);
  color: var(--text);
}

.hero-title-stack .hero-print {
  color: var(--accent);
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.hero-features.hero-features--hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0.15rem 0 0.85rem;
  max-width: 520px;
}

@media (max-width: 380px) {
  .hero-features.hero-features--hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-lead {
  font-size: 1rem;
  color: rgba(248, 247, 244, 0.82);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-cta-features-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.35rem;
  align-items: flex-start;
  margin-top: 0.15rem;
  max-width: min(40rem, 100%);
}

.hero-cta-stack {
  flex: 1 1 240px;
  min-width: 0;
}

.hero-clock {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: rgba(248, 247, 244, 0.75);
}

.hero-clock svg {
  flex-shrink: 0;
  color: var(--accent);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
  max-width: 520px;
}

.hero-features--aside {
  margin-top: 0;
  flex: 1 1 280px;
  max-width: 520px;
}

@media (min-width: 560px) {
  .hero-features:not(.hero-features--aside):not(.hero-features--hero-grid) {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-features--aside {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-feature {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(248, 247, 244, 0.82);
  line-height: 1.45;
}

.hero-feature svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* —— Stars —— */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

/* —— Testimonials —— */
.quote-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.quote-card .role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.02em;
}

/* —— Brand marquee (homepage) —— */
.brand-marquee-wrap {
  margin-top: 1.5rem;
}

.brand-marquee-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 0.75rem;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.brand-marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.brand-marquee-inner--animate {
  animation: brand-marquee-x 50s linear infinite;
}

.brand-marquee-inner--animate:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-inner--animate {
    animation: none;
  }
}

@keyframes brand-marquee-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-track {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  width: max-content;
  align-items: center;
  padding-bottom: 0.25rem;
  /* Space before the duplicated track (keeps -50% loop math correct; gap on inner would break it) */
  padding-right: clamp(1rem, 3vw, 2rem);
  flex-shrink: 0;
}

.brand-item {
  flex: 0 0 auto;
  min-width: 132px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 136, 0, 0.28);
  background: var(--surface);
  padding: 0.45rem 0.85rem;
  box-shadow: 0 0 0 1px rgba(255, 136, 0, 0.06);
}

.brand-item img {
  max-width: 118px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.25);
  opacity: 0.92;
}

.brand-placeholder {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.25;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stat-block {
  text-align: center;
}

.stat-block .stat-top {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-block .stat-mid {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  color: var(--accent);
}

.stat-block .stat-bot {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 520px) {
  .stat-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* —— Services white cards —— */
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  color: var(--black);
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card h3 {
  color: var(--black);
  margin-top: 0;
}

.services-headline {
  color: var(--black) !important;
}

.service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--black);
  font-size: 0.92rem;
}

.service-card li {
  margin-bottom: 0.35rem;
}

.service-card ul li::marker {
  color: var(--accent);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* —— Shop by category —— */
.shop-category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .shop-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .shop-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.shop-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  background: var(--white);
  color: var(--black) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-cat:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  color: var(--black) !important;
}

.shop-cat-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  margin-bottom: 0.65rem;
}

.shop-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-cat-img.shop-cat-img--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  min-height: 100px;
}

.shop-cat-img.shop-cat-img--fallback::after {
  content: "Add image";
  font-size: 0.72rem;
  color: #9ca3af;
  font-family: var(--font-mono);
}

.shop-cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.section-label-dash {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 0.5rem;
}

.section-label-dash .accent-word {
  color: var(--accent);
}

.bg-white .section-label-dash {
  color: #6b7280;
}

/* —— Why + process bundle —— */
.why-process-bundle {
  padding-block: clamp(2.25rem, 5vw, 4rem);
}

.why-process-top {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .why-process-top {
    grid-template-columns: minmax(240px, 300px) 1fr;
    align-items: end;
    gap: 2rem;
  }
}

.why-left-compact .why-head {
  margin-bottom: 0.65rem;
}

.why-lead-tight {
  margin-bottom: 1rem !important;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.why-features-compact {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 560px) {
  .why-features-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.why-features-compact .why-row {
  padding: 0.55rem 0.7rem;
}

.why-features-compact .why-desc {
  font-size: 0.78rem;
  line-height: 1.35;
}

.why-features-compact .why-icon {
  width: 34px;
  height: 34px;
}

.why-features-compact .why-icon svg {
  width: 22px;
  height: 22px;
}

.process-bundled {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid var(--border);
}

.process-header-tight {
  margin-bottom: 1.15rem;
}

.process-header-tight h2 {
  margin-bottom: 0;
}

.process-bundled-cta {
  margin-top: 1.35rem;
}

/* —— Legacy why split (unused) —— */
.why-split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .why-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.why-left h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  text-align: left;
  color: var(--text);
}

.why-left .why-sub {
  margin: 0 0 0.65rem;
}

.why-left .why-sub .accent-word {
  color: var(--accent);
}

.why-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  color: var(--text);
  margin: 0 0 1rem;
}

.why-head .why-line2 {
  font-size: 1em;
  font-weight: 800;
  opacity: 1;
}

.why-head .why-line3 {
  font-size: 1em;
}

.why-head .why-line3 .accent-word {
  color: var(--accent);
}

.why-head .why-line3 .why-qmark {
  color: var(--accent);
}

.btn-orange-black {
  background: var(--accent) !important;
  color: var(--black) !important;
}

.btn-orange-black:hover {
  background: var(--accent-hover) !important;
  color: var(--black) !important;
}

.why-left .lead {
  max-width: none;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.why-row:hover {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.why-row:hover .why-icon svg {
  color: var(--accent);
}

.why-row:hover .why-title {
  color: var(--text);
}

.why-row:hover .why-desc {
  color: var(--text-muted);
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  transition: color 0.2s;
}

.why-title {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.2rem;
  font-size: 1rem;
  text-transform: none;
  font-family: var(--font-body);
}

.why-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* —— Work white —— */
.work-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.work-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.work-cat {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: 0;
}

.headline-dark {
  color: var(--black) !important;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  padding: 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--accent);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-faint);
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--accent);
  transition: color 0.2s;
}

.step:hover .step-icon {
  color: var(--accent);
}

.step h3 {
  font-size: 1rem;
  margin: 0 0 0.45rem;
  color: #fff;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(248, 247, 244, 0.82);
}

.steps.steps-compact {
  gap: 0.75rem;
}

.steps.steps-compact .step {
  padding: 1rem;
}

.steps.steps-compact .step p {
  font-size: 0.84rem;
}

.process-head-simple {
  color: #fff !important;
  text-transform: none;
}

.process-head-simple .accent-word {
  color: var(--accent);
}

/* —— Deals (white section) —— */
.section-deals {
  background: var(--white);
  color: var(--black);
  padding-top: clamp(4.75rem, 10vw, 6.75rem) !important;
}

.section-deals .section-label,
.section-deals .section-label-dash {
  color: #6b7280;
}

.section-deals h2,
.section-deals .deal-name {
  color: var(--black);
}

.section-deals .grid-3 {
  align-items: stretch;
}

.section-deals .lead {
  color: #4b5563;
}

.deal-card {
  position: relative;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #d1d5db;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.deal-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.deal-img {
  aspect-ratio: 16/10;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-img .deal-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.deal-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-lines {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.deal-lines .deal-line1 {
  display: block;
  font-size: 1.35rem;
  color: var(--black);
}

.deal-lines .deal-line2 {
  display: block;
  font-size: 1.85rem;
  color: var(--accent);
}

.deal-name {
  font-weight: 600;
  margin: 0.35rem 0 0.5rem;
  color: var(--black);
}

.deal-body .lead {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #4b5563;
  flex: 1;
}

.deal-body .btn {
  margin-top: auto;
  width: 100%;
}

.btn-deal {
  background: var(--white) !important;
  color: var(--black) !important;
  border: 2px solid var(--black) !important;
}

.btn-deal:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--white) !important;
}

/* —— Quote —— */
.quote-section {
  border-top: 3px solid var(--accent);
}

.quote-section-label {
  margin-bottom: 0.85rem !important;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--accent);
  max-width: 22rem;
}

.quote-label-accent {
  color: var(--accent);
}

/* —— Quote split —— */
.quote-split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .quote-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.quote-copy h2 {
  text-align: left;
  color: var(--text);
}

.quote-copy .lead {
  max-width: none;
}

.form-note {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.form-note li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-note .note-arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  line-height: 0;
  padding: 1px;
}

.form-note .note-arrow svg {
  display: block;
}

.quote-title-stack {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-align: left;
  margin: 0 0 0.65rem;
}

.quote-title-stack .q-get {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.quote-title-stack .q-free {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.05;
}

.quote-title-stack .q-today {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.form-divider {
  height: 3px;
  background: var(--accent);
  margin: 1.25rem 0;
  border: none;
  border-radius: 2px;
}

.form-card {
  background: #151518;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-card .form-group label {
  color: #d1d5db;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  background: #151518;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #151518;
  border: 1px solid #374151;
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 136, 0, 0.28);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

.multi-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.multi-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  cursor: pointer;
}

.multi-grid input {
  width: auto;
  accent-color: var(--accent);
}

.field-hidden {
  display: none !important;
}

/* —— FAQ split —— */
.faq-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .faq-split {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.faq-heading {
  text-align: left;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.faq-heading .faq-title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.faq-heading .faq-title-line.faq-title-accent {
  color: var(--accent);
  margin-top: 0.12rem;
}

.faq-aside .link-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--black) !important;
  border-radius: 10px;
  font-family: var(--font-display);
}

.faq-aside .link-quote:hover {
  background: var(--accent-hover);
  color: var(--black) !important;
}

.faq-aside .lead {
  color: var(--text-muted);
}

.faq-split .faq-list {
  width: 100%;
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-q {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.faq-toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151;
  color: #fff;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.faq-icon-minus {
  display: none;
}

.faq-item.is-open .faq-icon-plus {
  display: none;
}

.faq-item.is-open .faq-icon-minus {
  display: block;
}

.faq-item button:hover .faq-toggle-icon,
.faq-item button:focus-visible .faq-toggle-icon {
  background: var(--accent);
  color: var(--black);
}

.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--accent);
}

.faq-item.is-open button {
  color: var(--accent);
}

.faq-item.is-open .faq-toggle-icon {
  background: var(--accent);
  color: var(--black);
}

.faq-panel {
  display: none;
  padding: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* —— CTA —— */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  background: var(--accent);
  border-top: none;
}

.cta-band h2 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

.cta-band .lead {
  color: var(--black);
  margin-inline: auto;
  max-width: 36rem;
}

.cta-band .sub {
  color: var(--black);
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.92;
}

.cta-band .btn-dark {
  background: var(--black) !important;
  color: #fff !important;
}

.cta-band .btn-dark:hover {
  background: #1f1f1f !important;
}

/* —— Footer —— */
.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  color: #d1d5db;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-brand .logo-footer {
  font-size: 1.35rem;
  color: #fff !important;
}

.footer-brand .logo-footer:hover,
.footer-brand .logo-footer:focus-visible {
  color: #fff !important;
}

.footer-brand .logo-footer .logo-cap {
  color: #fff !important;
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  max-width: 280px;
}

.footer-col h3 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact a {
  color: #f3f4f6;
}

.footer-cta {
  margin-top: 1.25rem;
}

.site-footer .fine {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.work-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.work-footer-row .btn-row {
  margin-top: 0;
}

.work-footer-note {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 22rem;
  text-align: right;
}

@media (max-width: 640px) {
  .work-footer-note {
    text-align: left;
  }
}

/* —— Shop / cart subpages —— */
.shop-page,
.cart-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.shop-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.shop-breadcrumb a {
  color: var(--accent);
}

.shop-page h1 {
  text-transform: none;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  margin-bottom: 0.35rem;
  color: var(--text);
}

.shop-page .shop-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.config-layout {
  display: grid;
  gap: 1.25rem;
}

.config-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

@media (min-width: 900px) {
  .config-layout {
    grid-template-columns: 1fr minmax(260px, 300px);
    align-items: start;
  }
}

.config-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.config-card h2 {
  text-transform: none;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: #fff;
}

.radio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.radio-grid label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.size-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.price-stack {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.price-stack .price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--accent);
}

.price-stack .price-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.process-mini {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.process-mini li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 2px solid var(--accent-faint);
  position: relative;
}

.process-mini li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.upload-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cart-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-row strong {
  color: var(--text);
}

.cart-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.cart-empty {
  color: var(--text-muted);
  padding: 2rem 0;
}

.stub-page {
  padding: clamp(2rem, 6vw, 4rem) 0;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.stub-page h1 {
  text-transform: none;
  color: var(--text);
}

/* —— Labels / product shop layout —— */
.shop-page-tight {
  padding-top: clamp(0.1rem, 0.6vw, 0.35rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.shop-hero {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .shop-hero {
    grid-template-columns: 1fr minmax(220px, 380px);
    align-items: start;
    gap: 1.5rem;
  }
}

.shop-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}

.shop-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-hero-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.shop-hero-img--empty::after {
  content: "Add hero image to /images/";
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.shop-h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text);
  margin: 0 0 0.5rem;
  text-transform: none;
}

.shop-bio {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 40rem;
}

.shop-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-stars-icons {
  color: var(--accent);
  letter-spacing: 0.05em;
}

.shop-stars-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shop-two-col {
  display: grid;
  gap: 1.25rem;
  grid-template-areas: "opts" "summary";
}

@media (min-width: 960px) {
  .shop-two-col {
    grid-template-columns: 1fr minmax(300px, 380px);
    grid-template-areas: "opts summary";
    align-items: start;
  }
}

.shop-two-col .shop-summary {
  grid-area: summary;
}

.shop-two-col .shop-opts {
  grid-area: opts;
}

.shop-opts select,
.shop-opts .shop-field input[type="text"],
.shop-opts .shop-field input[type="number"],
.shop-field-inline input {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 2px solid rgba(255, 136, 0, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.shop-opts select {
  appearance: none;
  background-color: var(--surface-2);
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) calc(50% - 3px), calc(100% - 0.72rem) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.shop-opts select:focus,
.shop-opts .shop-field input[type="text"]:focus,
.shop-opts .shop-field input[type="number"]:focus,
.shop-field-inline input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.order-summary-card .shop-field input[type="text"],
.order-summary-card .order-qty-input {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 2px solid rgba(255, 136, 0, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.order-summary-card .shop-field input[type="text"]:focus,
.order-summary-card .order-qty-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.shop-opts .shop-field {
  margin-bottom: 1rem;
}

.shop-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.shop-field label,
.shop-field .shop-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.shop-field-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.shape-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 520px) {
  .shape-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .shape-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .shape-picker {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.shape-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.shape-card:hover {
  border-color: var(--accent-faint);
  color: var(--text);
}

.shape-card.is-selected {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.shape-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.shape-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}

.finish-picker {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.finish-card {
  flex: 1;
  min-width: 100px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: border-color 0.15s, color 0.15s;
}

.finish-card.is-selected {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.shop-summary {
  position: sticky;
  top: calc(var(--header-h) + 0.35rem);
}

.order-summary-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.order-summary-title {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: #fff;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.order-line {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.order-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  flex-shrink: 0;
}

.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-thumb--empty {
  background: rgba(255, 136, 0, 0.12);
}

.order-line-name {
  font-weight: 700;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.order-line-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.35;
}

.order-qty-input {
  width: 5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
}

.order-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.75rem;
  gap: 0.75rem;
}

.order-each {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.order-each .pcs {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.order-line-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.order-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.order-row-total {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.promo-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.promo-row input {
  flex: 1;
  min-width: 120px;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 2px solid rgba(255, 136, 0, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.promo-row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.cart-summary-panel .promo-row input {
  background: var(--surface-2);
}

.order-secure {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0.75rem 0 0;
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.order-secure svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* —— Cart page —— */
.container-narrow {
  max-width: 960px;
}

.cart-h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: none;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.cart-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr minmax(280px, 340px);
    align-items: start;
  }
}

.cart-qty-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-line {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 640px) {
  .cart-line {
    grid-template-columns: auto 1fr;
  }

  .cart-line-price {
    grid-column: 2;
  }

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

.cart-line-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.cart-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-main strong {
  color: var(--text);
  font-size: 0.95rem;
}

.cart-line-qty {
  margin-top: 0.5rem;
}

.cart-line-qty input {
  width: 4.5rem;
  padding: 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.cart-line-price {
  text-align: right;
}

.cart-each {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.cart-subline {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.2rem;
}

.cart-summary-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
}

.cart-summary-panel code {
  font-size: 0.72rem;
  word-break: break-all;
}

/* —— Mobile —— */
@media (max-width: 899px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-inner {
    justify-content: center;
    padding: clamp(1.35rem, 5vw, 2.25rem) 0 clamp(0.9rem, 3vw, 1.35rem);
  }

  .hero-content {
    margin-left: 1rem;
    margin-right: auto;
    max-width: min(100%, 30rem);
  }

  .hero-title-stack .hero-line {
    font-size: clamp(2.1rem, 8.6vw, 3.1rem);
  }

  .quote-split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .faq-split {
    grid-template-columns: 1fr !important;
  }

  .stat-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-split {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    text-align: left;
  }

  .btn-primary,
  .btn-ghost,
  .btn-dark,
  .btn-orange-black,
  .btn-deal,
  .nav-cta-header {
    min-height: 44px;
  }

  .faq-item button {
    min-height: 48px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .deal-body .btn {
    min-height: 44px;
  }

  .section-deals .grid-3 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
  }

  .section-deals .deal-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .hero-title-stack .hero-line {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .steps {
    grid-template-columns: 1fr !important;
  }
}
