/* ==========================================================================
   ResaleKitchen Site — Complete Stylesheet
   Design System from Stitch prototypes
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --primary: #242d50;
  --primary-container: #3b4368;
  --secondary: #97472f;
  --secondary-container: #ff987b;
  --surface: #f8f9fc;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f2f3f6;
  --surface-container: #edeef1;
  --surface-container-high: #e7e8eb;
  --surface-container-highest: #e1e2e5;
  --on-surface: #191c1e;
  --on-surface-variant: #46464e;
  --outline: #76767f;
  --outline-variant: #c6c5cf;
  --peach-header: #F7D8C4;

  /* Shadows (navy-tinted, never pure black) */
  --shadow-card: 0 2px 8px rgba(30, 37, 64, 0.06), 0 8px 24px rgba(30, 37, 64, 0.08);
  --shadow-hover: 0 4px 16px rgba(30, 37, 64, 0.10), 0 12px 40px rgba(30, 37, 64, 0.12);
  --shadow-nav: 0 20px 40px rgba(30, 37, 64, 0.08);

  /* Radius */
  --r-sm: 0.25rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1rem;
  --r-2xl: 1.5rem;
  --r-full: 9999px;

  /* Fonts */
  --font-headline: 'Newsreader', serif;
  --font-body: 'Manrope', sans-serif;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--surface);
  font-family: var(--font-body);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}


/* ==========================================================================
   3. SKIP LINK (Accessibility)
   ========================================================================== */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 1rem;
}


/* ==========================================================================
   4. GRAIN OVERLAY
   ========================================================================== */

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}


/* ==========================================================================
   5. NAVIGATION (Floating Glass Nav Island)
   ========================================================================== */

.nav-island {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 72rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-nav);
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-island.nav-scrolled {
  background: rgba(255, 255, 255, 0.88);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-container);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary-container);
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 0.25rem;
}

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

.nav-links a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-cta-btn:hover {
  opacity: 0.9;
}

.btn-trail-sm {
  display: flex;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.ham-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-container);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open .ham-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open .ham-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 45, 80, 0.95);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.mobile-nav-link {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-headline);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mobile-nav-link:hover {
  opacity: 0.8;
}

.mobile-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mobile-cta:hover {
  opacity: 0.9;
}


/* ==========================================================================
   6. HERO (Homepage Video)
   ========================================================================== */

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 2rem);
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 45, 80, 0.4);
}

.hero-video-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 5rem 1.5rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-video-content h1 {
  font-family: var(--font-headline);
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-video-content h1 em {
  font-style: italic;
}

.hero-video-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.flex-center--gap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--r-full);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(151, 71, 47, 0.3);
}

.btn-wa:hover {
  transform: scale(0.98);
}

.hero-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   7. TRUST BAR
   ========================================================================== */

.trust-bar {
  position: relative;
  z-index: 30;
  margin-top: -3rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.trust-bar-inner {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-nav);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-item--bordered {
  border-top: 1px solid var(--surface-container-highest);
  border-bottom: 1px solid var(--surface-container-highest);
  padding: 1.5rem 0;
}

.trust-number {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  color: var(--primary);
  font-weight: 700;
}

.trust-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--outline);
  padding-top: 0.25rem;
}


/* ==========================================================================
   8. SECTIONS (Shared)
   ========================================================================== */

.section {
  padding: 6rem 1.5rem;
}

.section--xl {
  padding: 8rem 1.5rem;
}

.section--surface-low {
  background-color: var(--surface-container-low);
}

.section-container {
  max-width: 87.5rem; /* 1400px */
  margin: 0 auto;
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header-simple {
  text-align: center;
  margin-bottom: 4rem;
}

.stitch-heading {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.coral-line {
  width: 6rem;
  height: 1px;
  background: var(--secondary);
  margin: 0 auto;
}

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

.section-header--left {
  text-align: left;
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}


/* ==========================================================================
   9. CATEGORIES GRID (Homepage)
   ========================================================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cat-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.cat-card-outer {
  background: var(--surface-container);
  border-radius: var(--r-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card-outer:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-hover);
}

.cat-card-img-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cat-card-outer:hover .cat-card-img {
  transform: scale(1.1);
}

.cat-card-text {
  padding: 0 0.5rem 0.5rem;
}

.cat-card-title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  color: var(--primary);
}

.cat-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--outline);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}


/* ==========================================================================
   10. BUYING GUIDES (Homepage)
   ========================================================================== */

.guides-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 1.5rem;
}

.stitch-sub {
  color: var(--on-surface-variant);
  line-height: 1.7;
  max-width: 36rem;
}

.guides-view-all {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.guides-view-all:hover {
  opacity: 0.7;
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.guide-img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 37, 64, 0.10), 0 12px 40px rgba(30, 37, 64, 0.12);
}

.guide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.guide-card:hover .guide-img {
  transform: scale(1.05);
}

.guide-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-tag {
  display: inline-block;
  background: var(--surface-container-high);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
}

.guide-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.25;
}

.guide-excerpt {
  color: var(--on-surface-variant);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ==========================================================================
   11. CTA SECTION (Dark Navy)
   ========================================================================== */

.cta-section {
  width: 100%;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--primary);
}

.cta-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}

.cta-inner {
  max-width: 42rem;
}

.eyebrow-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.cta-heading {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.cta-heading em {
  font-style: italic;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(151, 71, 47, 0.3);
}

.btn-wa-green {
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease;
}

.btn-wa-green:hover {
  box-shadow: 0 4px 16px rgba(151, 71, 47, 0.3);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   12. FOOTER (Dark Navy)
   ========================================================================== */

.footer {
  background: #242d50;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-style: italic;
  color: #fff;
  text-decoration: none;
}

.footer-logo em {
  font-style: italic;
}

.footer-tagline {
  color: #94a3b8;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-nav-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-heading {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: var(--secondary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fed7aa;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

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

.footer-btn--primary:hover {
  opacity: 0.9;
}

.footer-btn--ghost {
  border: 1px solid #334155;
  color: #cbd5e1;
  background: transparent;
}

.footer-btn--ghost:hover {
  border-color: #64748b;
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}


/* ==========================================================================
   13. PAGE HEROES (Contact, Blog Listing)
   ========================================================================== */

.page-hero {
  padding: 12rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero--peach {
  background: var(--peach-header);
}

.page-hero--tall {
  min-height: 40vh;
}

.page-hero--library {
  background: var(--peach-header);
}

.stitch-display {
  font-family: var(--font-headline);
  font-size: 3rem;
  color: var(--primary);
}

.stitch-display em {
  font-style: italic;
}

.stitch-hero-sub {
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(36, 45, 80, 0.8);
  text-align: center;
}


/* ==========================================================================
   14. CONTACT PAGE
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-col {
  /* default: full width */
}

.stitch-heading-sm {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-style: italic;
  color: var(--primary);
}

.stitch-body-muted {
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stitch-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(36, 45, 80, 0.7);
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid rgba(36, 45, 80, 0.2);
  border-radius: var(--r-xl);
  font-size: 1rem;
  color: var(--on-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(151, 71, 47, 0.15);
}

.input-error {
  border-color: #dc2626 !important;
}

.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  min-height: 1.125rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--r-full);
  border: none;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

.btn-submit--loading {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  text-align: center;
  padding: 1rem;
  border-radius: var(--r-lg);
  font-weight: 600;
}

.form-status--success {
  background: #dcfce7;
  color: #166534;
}

.form-status--error {
  background: #fee2e2;
  color: #991b1b;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Double-Bezel Cards */
.bezel-outer {
  background: var(--surface-container);
  padding: 1rem;
  border-radius: var(--r-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bezel-outer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.bezel-inner {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 2px rgba(30, 37, 64, 0.04);
}

.info-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-card-icon {
  padding: 0.75rem;
  background: rgba(36, 45, 80, 0.05);
  border-radius: var(--r-full);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.info-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--on-surface-variant);
}

.info-card-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.info-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem;
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.info-card-btn--green {
  background: #16a34a;
  color: #fff;
}

.info-card-btn--green:hover {
  background: #15803d;
}

.contact-map-placeholder {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: var(--r-xl);
  background: var(--surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-pin {
  padding: 1rem;
  background: #fff;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(30, 37, 64, 0.15);
}

.contact-map-address {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem;
  border-radius: var(--r-lg);
  font-size: 0.75rem;
  font-weight: 600;
}


/* ==========================================================================
   15. CATEGORY PAGES
   ========================================================================== */

.cat-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  background: var(--primary);
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary-container), transparent);
  transform: skewX(-12deg);
  opacity: 0.4;
}

.cat-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cat-hero-breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a9b1dc;
}

.cat-hero-breadcrumb a {
  color: #a9b1dc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cat-hero-breadcrumb a:hover {
  color: #fff;
}

.cat-hero-breadcrumb span:last-child {
  color: #fff;
}

.cat-hero h1 {
  font-family: var(--font-headline);
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  line-height: 1.1;
}

.cat-hero p {
  color: #a9b1dc;
  font-size: 1.125rem;
  max-width: 48rem;
  line-height: 1.7;
}

.category-section-label {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-section-label h2 {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  color: var(--primary);
  font-style: italic;
  white-space: nowrap;
}

.category-section-label::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(225, 226, 229, 0.4);
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.equip-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.equip-card-img {
  height: 16rem;
  background: var(--surface-container-low);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.equip-card-body {
  padding: 0 0.5rem 0.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.equip-card-body h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.equip-spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.equip-spec-badge {
  background: var(--surface-container-high);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
}

.equip-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.equip-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.equip-cta:hover {
  gap: 0.75rem;
}

.category-section-title {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.consider-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.consider-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--r-xl);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 1px 3px rgba(30, 37, 64, 0.06);
  display: flex;
  flex-direction: column;
}

.consider-num {
  font-size: 3rem;
  font-family: var(--font-headline);
  color: var(--surface-container-highest);
  margin-bottom: 1.5rem;
}

.consider-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.consider-card p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}


/* ==========================================================================
   16. WHATSAPP CTA BAR
   ========================================================================== */

.wa-cta-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 50;
  background: var(--secondary);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(30, 37, 64, 0.12);
}

.wa-cta-bar-text {
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.125rem;
}

.wa-cta-bar-btn {
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.wa-cta-bar-btn:hover {
  opacity: 0.9;
}


/* ==========================================================================
   17. BLOG LISTING
   ========================================================================== */

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.featured-article__img {
  z-index: 10;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 32px rgba(30, 37, 64, 0.15);
  aspect-ratio: 16 / 9;
}

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

.featured-article__content {
  z-index: 20;
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-nav);
  border: 1px solid var(--surface-container);
}

.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-container-high);
  padding: 0.25rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.featured-article__title {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.featured-article__excerpt {
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-article__cta {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 600;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.featured-article__cta:hover {
  gap: 0.75rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background: var(--surface-container);
  padding: 1rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  background: var(--surface-container-low);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-container);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}

.blog-card--hidden {
  display: none;
}


/* ==========================================================================
   18. BLOG ARTICLES (Peach Header)
   ========================================================================== */

.article-peach-header {
  padding: 8rem 1.5rem 5rem;
  background: var(--peach-header);
  text-align: center;
}

.article-peach-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.breadcrumb-inner {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--outline);
  font-weight: 500;
}

.breadcrumb-inner a {
  text-decoration: none;
  color: var(--outline);
  transition: color 0.2s ease;
}

.breadcrumb-inner a:hover {
  color: var(--primary);
}

.breadcrumb-inner .separator {
  opacity: 0.5;
}

.article-peach-inner .blog-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--r-full);
  background: rgba(255, 152, 123, 0.2);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.article-peach-inner h1 {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--outline);
  font-weight: 500;
  font-size: 0.875rem;
}


/* ==========================================================================
   19. ARTICLE LAYOUT (Sidebar + Content)
   ========================================================================== */

.article-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.article-layout {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: flex;
  gap: 4rem;
}

/* Right sidebar (CTA + links) — below article on mobile, hidden on lg when TOC is visible */
.sidebar {
  display: none;
}

.sidebar-cta {
  background: var(--surface-container-low);
  padding: 2rem;
  border-radius: var(--r-xl);
  margin-bottom: 2rem;
}

.sidebar-cta h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sidebar-cta a {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.sidebar-card {
  background: var(--surface-container-low);
  padding: 1.5rem;
  border-radius: var(--r-xl);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.sidebar-card a {
  display: block;
  font-size: 0.875rem;
  color: var(--secondary);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: opacity 0.2s;
}

.sidebar-card a:hover {
  opacity: 0.7;
}

.article-sidebar {
  display: none;
  width: 16rem;
  flex-shrink: 0;
}

.article-sidebar-sticky {
  position: sticky;
  top: 6rem;
  border-left: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

.article-sidebar-title {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.article-sidebar-sub {
  font-size: 0.75rem;
  color: var(--outline);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toc-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.toc-link:hover {
  color: var(--primary);
  background: #f8fafc;
}

.toc-link.active {
  color: var(--secondary);
  border-left: 2px solid var(--secondary);
}

.article-main {
  flex: 1;
  min-width: 0;
  max-width: 47.5rem; /* ~760px */
}

/* Article Content Typography */
.article-content p {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.7;
  color: var(--on-surface);
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  margin-top: 4rem;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.article-content strong {
  font-weight: 700;
}

.article-content a {
  color: var(--secondary);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.article-content a:hover {
  opacity: 0.8;
}

.article-content img {
  border-radius: var(--r-xl);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 3rem 0;
}

/* Tables */
.article-content table {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.article-content thead {
  background: var(--primary);
  color: #fff;
}

.article-content thead th {
  padding: 1rem;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.125rem;
  text-align: left;
}

.article-content tbody tr:nth-child(odd) {
  background: #fff;
}

.article-content tbody tr:nth-child(even) {
  background: var(--surface-container-low);
}

.article-content tbody td {
  padding: 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--surface-container);
}

/* Blockquote */
.article-content blockquote {
  background: rgba(247, 216, 196, 0.3);
  border-left: 4px solid var(--secondary);
  padding: 2rem;
  font-style: italic;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2rem 0;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

/* Lists */
.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 1rem;
  color: var(--on-surface);
  line-height: 1.7;
}


/* ==========================================================================
   20. INLINE CTA (Within Articles)
   ========================================================================== */

.inline-cta {
  background: var(--primary);
  border-radius: var(--r-2xl);
  padding: 2rem;
  color: #fff;
  text-align: center;
  margin: 2rem 0;
}

.inline-cta h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.inline-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.inline-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-wa-sm {
  background: var(--secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}

.btn-wa-sm:hover {
  opacity: 0.9;
}

.btn-call-sm {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}

.btn-call-sm:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   21. RELATED GUIDES ("Deepen Your Knowledge")
   ========================================================================== */

.related-guides {
  background: var(--surface-container-low);
  padding: 6rem 1.5rem;
}

.related-guides-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.related-guides-title {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 3rem;
}

.related-guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.related-guide-card {
  background: var(--surface-container);
  padding: 1rem;
  border-radius: var(--r-xl);
  box-shadow: 0 1px 3px rgba(30, 37, 64, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.related-guide-card-inner {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-guide-card h4 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.related-guide-card p {
  font-size: 0.875rem;
  color: var(--outline);
  margin-bottom: 1.5rem;
}

.read-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.read-link:hover {
  gap: 0.75rem;
}


/* ==========================================================================
   21b. ABOUT PAGE (from-scratch redesign)
   ========================================================================== */

/* Navy hero — like category pages */
.about-hero {
  position: relative;
  padding: 10rem 1.5rem 6rem;
  background: var(--primary);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--primary-container) 0%, transparent 70%);
  opacity: 0.4;
  transform: skewX(-12deg);
  transform-origin: top right;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary-container);
  margin-bottom: 2rem;
}

.about-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-hero h1 em {
  font-style: italic;
}

.about-hero p {
  color: rgba(169, 177, 220, 0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

/* Trust bar — overlapping hero like homepage */
.about-trust-bar {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.about-trust-inner {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-nav);
}

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

.about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.about-trust-item--bordered {
  border-top: 1px solid var(--surface-container-highest);
  border-bottom: 1px solid var(--surface-container-highest);
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .about-trust-item--bordered {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--surface-container-highest);
    border-right: 1px solid var(--surface-container-highest);
    padding: 0 2rem;
  }
}

.about-trust-num {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.about-trust-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--outline);
}

/* Shared section spacing */
.about-section {
  padding: 6rem 1.5rem;
}

.about-section--tinted {
  background: var(--surface-container-low);
}

.about-section--compact {
  padding: 4rem 1.5rem;
}

.about-wrap {
  max-width: 68rem;
  margin: 0 auto;
}

/* Section headers */
.about-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-coral-line {
  width: 3rem;
  height: 2px;
  background: var(--secondary);
  margin: 1rem auto 0;
}

/* Headings */
.about-h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--primary);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-h2--center {
  text-align: center;
}

/* Eyebrow label */
.about-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Asymmetric split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 10rem 1fr;
    gap: 4rem;
  }
}

.about-split-label {
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .about-split-label {
    text-align: right;
    border-right: 2px solid var(--secondary);
    padding-right: 2rem;
  }
}

.about-split-content p {
  color: var(--on-surface-variant);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-split-content a {
  color: var(--secondary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.about-split-content a:hover {
  opacity: 0.7;
}

/* 3-col double-bezel benefit cards */
.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.about-card {
  background: var(--surface-container);
  padding: 0.75rem;
  border-radius: var(--r-xl);
  box-shadow: 0 10px 30px rgba(30, 37, 64, 0.04);
  display: flex;
}

.about-card-inner {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card-inner h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.about-card-inner p {
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* Icon circles */
.about-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about-card-icon--coral { background: rgba(151, 71, 47, 0.08); color: var(--secondary); }
.about-card-icon--green { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.about-card-icon--blue  { background: rgba(36, 45, 80, 0.08);  color: var(--primary); }
.about-card-icon--amber { background: rgba(217, 119, 6, 0.08); color: #d97706; }

.about-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Audience pills */
.about-audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.about-audience-pill {
  background: var(--surface-container);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

.about-audience-pill strong {
  color: var(--primary);
  font-weight: 700;
}

/* Blockquote */
.about-blockquote {
  background: rgba(247, 216, 196, 0.25);
  border-left: 3px solid var(--secondary);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--primary);
  line-height: 1.5;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* Guide link pills */
.about-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-link-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: #fff;
  border-radius: var(--r-full);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30, 37, 64, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-link-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Location */
.about-location-p {
  max-width: 32rem;
  margin: 1rem auto 0;
  color: var(--on-surface-variant);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ==========================================================================
   21c. LEGACY CATEGORY PAGES (mixers, refrigeration, restaurant, small equip)
   ========================================================================== */

/* Breadcrumb bar (legacy pages) */
.breadcrumb {
  padding: 6rem 1.5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.breadcrumb-inner {
  font-size: 0.75rem;
  color: var(--outline);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb-inner a {
  color: var(--outline);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-inner a:hover {
  color: var(--primary);
}

/* Page hero (non-peach, non-category-navy) */
.page-hero:not(.page-hero--peach) {
  padding: 2rem 1.5rem 3rem;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.page-hero:not(.page-hero--peach) h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.page-hero:not(.page-hero--peach) p {
  color: var(--on-surface-variant);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card grids (legacy product cards) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card-grid--spaced {
  margin-bottom: 4rem;
}

.card {
  background: var(--surface-container);
  padding: 1rem;
  border-radius: var(--r-xl);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card > div:first-child,
.card > .bezel-inner-legacy {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-lg);
}

.card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card .product-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
}

.price-tag {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-footnote {
  font-size: 0.75rem;
  color: var(--outline);
  font-style: italic;
}

/* Product images in inline-cta */
.product-img {
  width: 100%;
  max-width: 24rem;
  height: auto;
  border-radius: var(--r-xl);
  margin: 1.5rem auto;
  display: block;
}

/* Spec tables (legacy) */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 3rem 0;
  font-size: 0.875rem;
}

.spec-table-header {
  background: var(--primary);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1rem;
}

.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--surface-container);
}

.spec-table tr:nth-child(even),
.spec-table-row--alt {
  background: var(--surface-container-low);
}

.spec-table tr:nth-child(odd) {
  background: #fff;
}

/* Section title variations */
.category-section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.category-section-title--spaced {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* Inline CTA spaced variant */
.inline-cta--spaced {
  margin-bottom: 4rem;
}

/* Blog grid compact variant */
.blog-grid--compact {
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Utility classes */
.mb-1-5 {
  margin-bottom: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-cta-centered {
  text-align: center;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

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


/* ==========================================================================
   22. SCROLL REVEAL ANIMATION
   ========================================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   23. UTILITY CLASSES
   ========================================================================== */

.btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  z-index: 60;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.phone-copy-toast.show {
  transform: translateX(-50%) translateY(0);
}

.blog-lazy-sentinel {
  display: none;
}


/* ==========================================================================
   24. FOCUS & ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   25. RESPONSIVE — sm (>=640px)
   ========================================================================== */

@media (min-width: 640px) {
  .flex-center--gap {
    flex-direction: row;
  }

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


/* ==========================================================================
   26. RESPONSIVE — md (>=768px)
   ========================================================================== */

@media (min-width: 768px) {
  /* Nav */
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-video-content h1 {
    font-size: 4.5rem;
  }

  .hero-video-content p {
    font-size: 1.25rem;
  }

  /* Trust Bar */
  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item--bordered {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--surface-container-highest);
    border-right: 1px solid var(--surface-container-highest);
    padding: 0;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Guides */
  .guides-header {
    flex-direction: row;
  }

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

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .cta-heading {
    font-size: 3rem;
  }

  /* Category hero */
  .cat-hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

  /* WA CTA Bar */
  .wa-cta-bar {
    flex-direction: row;
  }

  .wa-cta-bar-text {
    font-size: 1.25rem;
  }

  /* Inline CTA */
  .inline-cta {
    padding: 3rem;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: row;
  }

  /* Page heroes */
  .stitch-display {
    font-size: 4.5rem;
  }

  .stitch-hero-sub {
    font-size: 1.25rem;
  }

  /* Article peach */
  .article-peach-inner h1 {
    font-size: 3.75rem;
  }

  /* Featured article title */
  .featured-article__title {
    font-size: 2.25rem;
  }

  /* Featured content padding */
  .featured-article__content {
    padding: 3rem;
  }
}


/* ==========================================================================
   27. RESPONSIVE — lg (>=1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Contact layout */
  .contact-layout {
    grid-template-columns: repeat(10, 1fr);
  }

  .contact-form-col {
    grid-column: span 6;
  }

  .contact-info-col {
    grid-column: span 4;
  }

  /* Equipment grid */
  .equip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Consider grid */
  .consider-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Featured article — asymmetric overlap layout */
  .featured-article {
    grid-template-columns: repeat(12, 1fr);
  }

  .featured-article__img {
    grid-column: 1 / 9;
    grid-row: 1;
  }

  .featured-article__content {
    grid-column: 7 / 13;
    grid-row: 1;
    margin-left: 0;
    margin-top: 0;
    padding: 2.5rem 3rem;
  }

  /* Related guides */
  .related-guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Article sidebar */
  .article-sidebar {
    display: block;
  }

  /* Category hero */
  .cat-hero h1 {
    font-size: 4.5rem;
  }

  .cat-hero p {
    font-size: 1.25rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: row;
  }

  .footer-container {
    padding: 0 6rem;
  }
}


/* ==========================================================================
   28. SELL SECTION & PAGES
   ========================================================================== */

.section--surface-warm {
  background: var(--peach-header);
}

/* --- Homepage sell CTA grid --- */
.sell-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.sell-cta-card {
  background: var(--surface-container-lowest);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sell-cta-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.sell-cta-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.sell-cta-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sell-cta-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* --- Sell Hero (redesigned) --- */
.sell-hero {
  background: var(--primary);
  color: #fff;
  padding: clamp(100px, 12vw, 160px) clamp(20px, 5vw, 80px) clamp(80px, 10vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sell-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(151, 71, 47, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sell-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.sell-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-container);
  margin-bottom: 1.25rem;
}

.sell-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.sell-hero h1 em {
  color: var(--secondary-container);
  font-style: italic;
}

.sell-hero p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.sell-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Steps (redesigned with cards + connector) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 50px;
  left: calc(16.67% + 26px);
  right: calc(16.67% + 26px);
  height: 3px;
  background: var(--secondary);
  opacity: 0.25;
  z-index: 0;
  border-radius: 2px;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface-container-lowest);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(151, 71, 47, 0.3);
}

.step-card h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* --- Benefit cards (redesigned with SVG icon circles) --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--surface-container-lowest);
  border: 1px solid var(--surface-container-high);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.benefit-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.benefit-icon--coral { background: rgba(151, 71, 47, 0.12); color: var(--secondary); }
.benefit-icon--blue { background: rgba(59, 67, 104, 0.12); color: var(--primary-container); }
.benefit-icon--green { background: rgba(34, 139, 34, 0.1); color: #228b22; }
.benefit-icon--amber { background: rgba(210, 150, 50, 0.12); color: #b8860b; }

.benefit-card h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* --- Recently Listed (social proof) --- */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.recent-card {
  background: var(--surface-container-lowest);
  border: 1px solid var(--surface-container-high);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.recent-card:hover { box-shadow: var(--shadow-card); }

.recent-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}

.recent-tag--sold { background: rgba(34, 139, 34, 0.1); color: #228b22; }
.recent-tag--listed { background: rgba(59, 67, 104, 0.1); color: var(--primary-container); }

.recent-card h4 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.recent-detail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.recent-price {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.01em;
}

/* --- Two-col layout for What/Who --- */
.sell-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* --- Audience pills --- */
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.audience-pill {
  background: var(--surface-container-lowest);
  border: 1px solid var(--surface-container-high);
  border-radius: var(--r-full);
  padding: 0.5rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--on-surface);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.audience-pill:hover {
  border-color: var(--secondary);
  background: rgba(151, 71, 47, 0.04);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--secondary); }

.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 500;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-container-low);
  color: var(--on-surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  background: var(--secondary);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-a p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* --- Sticky bottom CTA --- */
.sell-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--primary);
  padding: 0.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(30, 37, 64, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.sell-sticky-cta.is-visible { transform: translateY(0); }

.sell-sticky-btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background 0.2s;
}

.sell-sticky-btn:hover { background: #7a3a24; }

/* --- Submit page extras --- */
.form-section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--outline);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--surface-container-high);
}

.form-section-label:first-of-type { margin-top: 0; }

.form-req { color: var(--secondary); }

.sell-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sell-tips-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.5;
}

.sell-tips-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sell-cta-grid,
  .steps-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .recent-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-connector { display: none; }

  .sell-hero {
    padding: clamp(80px, 10vw, 120px) 1.25rem clamp(60px, 8vw, 80px);
  }
  .sell-hero h1 { font-size: 1.75rem; line-height: 1.25; margin-bottom: 1rem; }
  .sell-hero p { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .sell-hero-eyebrow { font-size: 0.7rem; margin-bottom: 1rem; }
  .sell-hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .sell-hero-btns .hero-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .step-card { padding: 1.5rem 1.25rem; }
  .benefit-card { padding: 1.5rem; }
  .benefit-icon-wrap { width: 48px; height: 48px; }
  .benefit-icon-wrap svg { width: 24px; height: 24px; }

  .recent-card { padding: 1.25rem; }
  .recent-card h4 { font-size: 0.95rem; }
  .recent-price { font-size: 1.1rem; }

  .audience-pills { gap: 0.5rem; }
  .audience-pill { font-size: 0.8rem; padding: 0.4rem 1rem; }

  .faq-q { font-size: 0.95rem; padding: 1rem 0; }
  .faq-q::after { width: 28px; height: 28px; font-size: 1.1rem; }

  .sell-sticky-cta { padding: 0.65rem 1rem; }
  .sell-sticky-btn { font-size: 0.9rem; padding: 0.7rem 1.5rem; }

  /* Submit page mobile */
  .form-section-label { font-size: 0.7rem; margin: 1.25rem 0 0.75rem; }
  .sell-tips-list li { font-size: 0.8rem; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .recent-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .recent-grid { grid-template-columns: 1fr; }
  .sell-hero h1 { font-size: 1.5rem; }
}

/* ==========================================================================
   29. RESPONSIVE — xl (>=1280px)
   ========================================================================== */

@media (min-width: 1280px) {
  .cat-hero h1 {
    font-size: 4.5rem;
  }
}
