

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  
  --ink: #12181F;
  --ink-soft: #1E2731;
  --ink-softer: #2A3542;
  --steel: #4A5A68;
  --steel-light: #7C8B98;
  --paper: #F6F4EE;
  --paper-dim: #EDEAE0;
  --white: #FFFFFF;
  --line: rgba(18, 24, 31, 0.10);
  --line-strong: rgba(18, 24, 31, 0.20);

  
  --corten: #C1552F;
  --corten-dark: #9C4324;
  --corten-tint: #FBEDE6;
  --signal: #EFAE42;
  --signal-tint: #FDF3DF;

  
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  
  --container-w: 1240px;

  
  --shadow-xs: 0 1px 2px rgba(18, 24, 31, 0.05);
  --shadow-sm: 0 2px 8px rgba(18, 24, 31, 0.06), 0 1px 2px rgba(18, 24, 31, 0.05);
  --shadow-md: 0 8px 24px rgba(18, 24, 31, 0.08), 0 2px 6px rgba(18, 24, 31, 0.05);
  --shadow-lift: 0 22px 44px -14px rgba(18, 24, 31, 0.22), 0 6px 16px -6px rgba(18, 24, 31, 0.10);
  --shadow-modal: 0 32px 80px -16px rgba(18, 24, 31, 0.38);

  
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; 
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.wrap { max-width: var(--container-w); margin: 0 auto; padding: 0 28px; }

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

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--signal); outline-offset: 2px; border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 12px 20px; font-family: var(--font-mono); border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 8px; }

.tone-paper { background: var(--paper); }
.tone-white { background: var(--white); }
.tone-dim { background: var(--paper-dim); }


h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4.4vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
p { color: var(--steel); }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--corten); display: inline-flex; align-items: center; gap: 9px; font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--corten); display: inline-block; border-radius: 2px; }
.lede { font-size: 1.14rem; color: var(--steel); max-width: 60ch; line-height: 1.65; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap; max-width: 100%;
}
.btn-primary { background: var(--corten); color: var(--white); box-shadow: 0 6px 16px -4px rgba(193, 85, 47, 0.45); }
.btn-primary:hover { background: var(--corten-dark); transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(193, 85, 47, 0.5); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: var(--white); }
.btn-outline:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline.on-dark { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.04); }
.btn-outline.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-ghost { color: var(--corten); font-weight: 600; padding: 8px 0; border-bottom: 1.5px solid transparent; border-radius: 0; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.18s var(--ease), border-color 0.18s var(--ease); }
.btn-ghost:hover { border-bottom-color: var(--corten); gap: 10px; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }


.go-arrow { display: inline-block; transition: transform 0.2s var(--ease); }


.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(246,244,238,0.88);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; flex-shrink: 0; }
.brand .plate {
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.06em; color: var(--white); background: var(--corten);
  padding: 4px 8px; border-radius: 6px;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav ul { display: flex; gap: 6px; flex-wrap: wrap; }
.main-nav a { font-size: 0.93rem; font-weight: 500; color: var(--ink); position: relative; padding: 9px 13px; white-space: nowrap; border-radius: var(--radius-full); transition: background 0.18s var(--ease), color 0.18s var(--ease); }
.main-nav a:hover { background: rgba(18,24,31,0.05); }
.main-nav a[aria-current="page"] { color: var(--corten); background: var(--corten-tint); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--line-strong); border-radius: var(--radius-full); flex-shrink: 0; transition: border-color 0.18s var(--ease), background 0.18s var(--ease), transform 0.18s var(--ease); background: var(--white); }
.icon-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--corten); color: var(--white);
  font-family: var(--font-mono); font-size: 0.66rem; min-width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 600; border: 2px solid var(--paper);
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-full); align-items: center; justify-content: center; flex-shrink: 0; background: var(--white); }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 22px 24px; transform: translateX(100%); transition: transform 0.28s var(--ease); overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav ul a { display: block; padding: 15px 14px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .main-nav .nav-cta { margin-top: 18px; display: block; text-align: center; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .header-bar { height: 68px; }
}


.hero { position: relative; background: linear-gradient(165deg, var(--ink) 0%, #182029 50%, var(--ink-soft) 100%); color: var(--white); overflow: hidden; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.55; }
.hero::before { width: 460px; height: 460px; background: radial-gradient(circle, rgba(193,85,47,0.35), transparent 70%); top: -200px; right: -120px; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, rgba(239,174,66,0.18), transparent 70%); bottom: -200px; left: -100px; }
.hero h1 { color: var(--white); position: relative; }
.hero .eyebrow { position: relative; }
.hero .hero-lede { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 55ch; margin-top: 18px; line-height: 1.65; position: relative; }


.hero-light { position: relative; background: var(--paper); overflow: hidden; padding-top: 0; }
.hero-light-inner { position: relative; padding: 16px 0 56px; display: grid; grid-template-columns: 1fr 0.92fr; gap: 40px; align-items: center; }
.hero-light-art { align-self: start; }
.hero-light-copy h1 { color: var(--ink); margin-top: 18px; }
.hero-light-copy h1 em { font-style: normal; color: var(--corten); }
.hero-lede { color: var(--steel); font-size: 1.1rem; max-width: 50ch; margin: 22px 0 30px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.trust-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--paper); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  margin-left: -12px;
}
.avatar-stack span:first-child { margin-left: 0; }
.trust-copy { font-size: 0.9rem; color: var(--steel); }
.trust-copy strong { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }

.hero-light-art {
  width: 100%; aspect-ratio: 1100/956; position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-light-art::before, .hero-light-art::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-light-art::before { width: 62%; height: 62%; background: radial-gradient(circle, rgba(193,85,47,0.09), transparent 72%); top: -8%; right: -6%; }
.hero-light-art::after { width: 48%; height: 48%; background: radial-gradient(circle, rgba(18,24,31,0.07), transparent 72%); bottom: -6%; left: -4%; }
.hero-light-art img {
  width: 100%; height: 100%; object-fit: contain; display: block; position: relative; z-index: 1;
  transform: rotate(-2.5deg) translateY(-2%);
  filter: drop-shadow(0 30px 34px rgba(18,24,31,0.20));
}

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.stat-block { padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.18s var(--ease); }
.stat-block:hover { transform: translateY(-3px); }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.stat-lbl { font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.4; }
.stat-corten { background: var(--corten); color: var(--white); }
.stat-corten .stat-lbl { color: rgba(255,255,255,0.78); }
.stat-ink { background: var(--ink); color: var(--white); }
.stat-ink .stat-lbl { color: rgba(255,255,255,0.62); }
.stat-cream { background: var(--paper-dim); color: var(--ink); }
.stat-cream .stat-lbl { color: var(--steel); }
.stat-signal { background: var(--signal); color: var(--ink); }
.stat-signal .stat-lbl { color: rgba(18,24,31,0.68); }

@media (max-width: 980px) {
  .hero-light-inner { grid-template-columns: 1fr; padding: 44px 0 40px; }
  .hero-light-art { max-width: 480px; margin: 0 auto; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 20px 18px; }
}


section { padding: 92px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }
.section-dark { background: linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 100%); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.68); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--white); }
.section-tight { padding: 56px 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }


@media (max-width: 640px) {
  body[data-page="index.html"] .grid-3,
  body[data-page="index.html"] .grid-4,
  body[data-page="index.html"] .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  body[data-page="index.html"] .offer-card,
  body[data-page="index.html"] .blog-card .blog-body,
  body[data-page="index.html"] .quote-card,
  body[data-page="index.html"] .process-step {
    padding: 16px;
    gap: 9px;
  }
  body[data-page="index.html"] .offer-card h3,
  body[data-page="index.html"] .blog-body h3,
  body[data-page="index.html"] .process-step h3 { font-size: 0.9rem; }
  body[data-page="index.html"] .offer-card p,
  body[data-page="index.html"] .blog-body p,
  body[data-page="index.html"] .quote-card p,
  body[data-page="index.html"] .process-step p { font-size: 0.78rem; line-height: 1.5; }
  body[data-page="index.html"] .offer-icon { width: 36px; height: 36px; }
  body[data-page="index.html"] .offer-card .tag,
  body[data-page="index.html"] .blog-meta { font-size: 0.62rem; }
  body[data-page="index.html"] .card-go { font-size: 0.76rem; }
  body[data-page="index.html"] .quote-card::before { font-size: 2.2rem; top: 10px; left: 14px; }
  body[data-page="index.html"] .step-num { font-size: 0.74rem; margin-bottom: 6px; }
}
@media (max-width: 380px) {
  body[data-page="index.html"] .grid-3,
  body[data-page="index.html"] .grid-4,
  body[data-page="index.html"] .process-row {
    gap: 9px;
  }
  body[data-page="index.html"] .offer-card,
  body[data-page="index.html"] .blog-card .blog-body,
  body[data-page="index.html"] .quote-card,
  body[data-page="index.html"] .process-step { padding: 13px; }
}


.card-base {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s var(--ease);
}


.offer-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 13px; min-width: 0; position: relative;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
a.offer-card { cursor: pointer; }
a.offer-card:hover, .offer-card.is-hoverable:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--corten); }
a.offer-card:hover .card-go, .offer-card.is-hoverable:hover .card-go { transform: translateX(4px); color: var(--corten-dark); }
.offer-card .tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--corten); font-weight: 600; }
.offer-card p { font-size: 0.95rem; line-height: 1.6; }
.offer-card .btn-ghost { margin-top: auto; align-self: flex-start; }
.card-go { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.86rem; font-weight: 600; color: var(--corten); transition: transform 0.2s var(--ease), color 0.2s var(--ease); }
a:hover .card-go, [role="button"]:hover .card-go { transform: translateX(4px); }
a:hover .card-go .go-arrow, [role="button"]:hover .card-go .go-arrow { transform: translateX(2px); }
.offer-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--corten-tint); display: flex; align-items: center; justify-content: center; color: var(--corten); flex-shrink: 0; }


.offer-card.on-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.offer-card.on-dark h3, .offer-card.on-dark p { color: var(--white); }
.offer-card.on-dark p { color: rgba(255,255,255,0.68); }
.offer-card.on-dark .card-go { color: var(--signal); }
a.offer-card.on-dark:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.offer-card.on-dark .offer-icon { background: rgba(255,255,255,0.1); color: var(--signal); }

.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 26px 24px; background: var(--white); transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.process-step:hover { border-color: var(--corten); transform: translateY(-3px); }
.process-step .step-num { font-family: var(--font-mono); color: var(--corten); font-size: 0.84rem; margin-bottom: 12px; display: block; font-weight: 600; }
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-row { grid-template-columns: 1fr; } }


.cat-pillbar { display: flex; gap: 10px; overflow-x: auto; padding: 4px 4px 14px; margin-bottom: 14px; scrollbar-width: thin; }
.cat-pillbar::-webkit-scrollbar { height: 6px; }
.cat-pillbar::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 6px; }
.cat-pill {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; padding: 8px 14px 8px 8px;
  border-radius: var(--radius-full); border: 1.5px solid var(--line); background: var(--white);
  font-size: 0.82rem; font-weight: 600; color: var(--ink); white-space: nowrap;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.cat-pill:hover { border-color: var(--corten); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-pill.active { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: var(--shadow-md); }
.cat-pill .pill-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--corten-tint); color: var(--corten); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-pill .pill-icon svg { width: 13px; height: 13px; }
.cat-pill.active .pill-icon { background: rgba(255,255,255,0.16); color: var(--signal); }
.cat-pill .pill-count { font-family: var(--font-mono); font-size: 0.66rem; color: var(--steel-light); font-weight: 500; }
.cat-pill.active .pill-count { color: rgba(255,255,255,0.55); }
@media (max-width: 620px) {
  .cat-pillbar { gap: 8px; margin-bottom: 10px; }
  .cat-pill { padding: 7px 12px 7px 7px; font-size: 0.78rem; gap: 7px; }
  .cat-pill .pill-icon { width: 21px; height: 21px; }
  .cat-pill .pill-icon svg { width: 11px; height: 11px; }
  .cat-pill .pill-count { font-size: 0.62rem; }
}


.catalog-switch { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.catalog-switch a { flex: 1; min-width: 230px; padding: 22px 24px; border-radius: var(--radius-lg); border: 1.5px solid var(--line); background: var(--white); display: flex; align-items: center; gap: 16px; transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease); }
.catalog-switch a:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: var(--corten); }
.catalog-switch a.current { border-color: var(--corten); background: var(--corten-tint); }
.catalog-switch .cs-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--paper-dim); display: flex; align-items: center; justify-content: center; color: var(--corten); flex-shrink: 0; }
.catalog-switch a.current .cs-icon { background: var(--corten); color: var(--white); }
.catalog-switch strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.catalog-switch span.sub { font-size: 0.83rem; color: var(--steel); }


.ph-media {
  position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px;
  overflow: hidden; color: var(--white); text-align: center; padding: 16px; width: 100%; height: 100%;
}
.ph-media .ph-icon { width: 38px; height: 38px; opacity: 0.95; }
.ph-media .ph-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.9; max-width: 92%; }
.ph-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(18,24,31,0.12), rgba(18,24,31,0.38)); pointer-events: none; }
.ph-media > * { position: relative; z-index: 1; }
.media-frame { position: relative; width: 100%; height: 100%; }
.media-frame img.real-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; background: var(--paper-dim); }

.ph-home { background: linear-gradient(150deg, #8A5231, #C1552F); }
.ph-office { background: linear-gradient(150deg, #2C3B47, #4A5A68); }
.ph-education { background: linear-gradient(150deg, #3C5A63, #5D7E8C); }
.ph-health { background: linear-gradient(150deg, #6E7B4A, #8FA05C); }
.ph-retail-fb { background: linear-gradient(150deg, #B06D2E, #EFAE42); }
.ph-accommodation { background: linear-gradient(150deg, #4F3F63, #715A87); }
.ph-leisure { background: linear-gradient(150deg, #2E6E7C, #3F94A6); }
.ph-box { background: linear-gradient(150deg, #9C4324, #C1552F); }
.ph-wrench { background: linear-gradient(150deg, #3F4F5D, #6F8090); }
.ph-briefcase { background: linear-gradient(150deg, #2C3B47, #4F6373); }
.ph-sparkle { background: linear-gradient(150deg, #C1552F, #EFAE42); }
.ph-refresh { background: linear-gradient(150deg, #5D7E8C, #8FA05C); }
.ph-snowflake { background: linear-gradient(150deg, #2E6E7C, #5D7E8C); }
.ph-flag { background: linear-gradient(150deg, #9C4324, #B06D2E); }
.ph-bed { background: linear-gradient(150deg, #4F3F63, #8A5231); }
.ph-shop { background: linear-gradient(150deg, #B06D2E, #C1552F); }
.ph-cross { background: linear-gradient(150deg, #6E7B4A, #5D7E8C); }
.ph-book { background: linear-gradient(150deg, #3C5A63, #33404A); }


.catalog-layout { display: block; }


.filter-panel {
  background: var(--white); border: none; border-right: 1.5px solid var(--line);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 22px 26px 28px;
  position: fixed; top: 0; left: 0; height: 100vh; width: 320px; max-width: 86vw; z-index: 145;
  overflow-y: auto; box-shadow: var(--shadow-modal);
  transform: translateX(-100%); transition: transform 0.32s var(--ease);
}
.filter-panel.open { transform: translateX(0); }
.filter-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.filter-panel-head h4 { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin: 0; }
.filter-close { width: 34px; height: 34px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.18s var(--ease), border-color 0.18s var(--ease); }
.filter-close:hover { background: var(--paper); border-color: var(--ink); }
.filter-group { margin-bottom: 26px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; color: var(--steel); }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 0.9rem; cursor: pointer; border-radius: var(--radius-xs); transition: color 0.15s var(--ease); }
.filter-option:hover { color: var(--corten); }
.filter-option input { accent-color: var(--corten); width: 17px; height: 17px; flex-shrink: 0; }
.filter-reset { margin-top: 18px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--corten); }
.filter-apply { margin-top: 22px; }


.filter-overlay {
  position: fixed; inset: 0; background: rgba(18,24,31,0.5); backdrop-filter: blur(2px); z-index: 140;
  opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease);
}
.filter-overlay.open { opacity: 1; pointer-events: auto; }


.filter-tab {
  position: fixed; top: 50%; left: 0; transform: translateY(-50%); z-index: 130;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: var(--ink); color: var(--white); border: none;
  padding: 16px 10px 18px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-lift); cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.32s var(--ease), left 0.32s var(--ease);
  animation: filter-tab-nudge 3.6s ease-in-out 2;
}
.filter-tab:hover { background: var(--corten); }
.filter-tab.open { background: var(--corten); transform: translateY(-50%) translateX(320px); animation: none; }
.filter-tab .tab-icon { width: 18px; height: 18px; flex-shrink: 0; }
.filter-tab .tab-count {
  position: absolute; top: 8px; right: 6px; background: var(--corten); color: var(--white);
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600; min-width: 16px; height: 16px;
  border-radius: 50%; display: none; align-items: center; justify-content: center; border: 2px solid var(--ink);
}
.filter-tab.has-active .tab-count { display: flex; }
.filter-tab .tab-label { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes filter-tab-nudge {
  0%, 78%, 100% { left: 0; }
  86% { left: 8px; }
  93% { left: 0; }
}
@media (max-width: 480px) {
  .filter-tab.open { transform: translateY(-50%) translateX(min(320px, 86vw)); }
}

.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.results-count { font-family: var(--font-mono); font-size: 0.84rem; color: var(--steel); }
.sort-select { border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 10px 14px; background: var(--white); max-width: 100%; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 14px; gap: 7px; }
  .product-body h3 { font-size: 0.86rem; line-height: 1.3; }
  .product-meta { font-size: 0.66rem; gap: 3px 8px; }
  .product-price { font-size: 0.86rem; }
  .product-actions { flex-direction: column; gap: 7px; }
  .product-actions .btn { min-width: 0; width: 100%; padding: 9px 10px; font-size: 0.76rem; }
  .grade-badge { font-size: 0.58rem; padding: 4px 8px; top: 8px; left: 8px; }
  .offer-icon, .cargo-card .offer-icon { width: 40px; height: 40px; }
  
  .product-card .eyebrow, .cargo-card .eyebrow,
  .product-meta,
  .cargo-unit-count,
  .cargo-card .product-body > p,
  .cargo-spec-tags {
    display: none;
  }
}


.product-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; min-width: 0; cursor: pointer;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--line-strong); }
.product-media { aspect-ratio: 4/3; position: relative; }
.product-media .grade-badge { position: absolute; top: 12px; left: 12px; background: rgba(18,24,31,0.72); backdrop-filter: blur(4px); color: var(--white); font-family: var(--font-mono); font-size: 0.66rem; padding: 5px 10px; border-radius: var(--radius-full); z-index: 3; letter-spacing: 0.03em; }
.product-body { padding: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; min-width: 0; }
.product-body h3 { font-size: 1.04rem; word-wrap: break-word; }
.product-meta { font-family: var(--font-mono); font-size: 0.76rem; color: var(--steel); display: flex; flex-wrap: wrap; gap: 6px 14px; }
.product-price { font-family: var(--font-mono); font-weight: 600; color: var(--corten); font-size: 1rem; margin-top: 2px; }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 10px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 110px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--steel); grid-column: 1 / -1; background: var(--white); border-radius: var(--radius-lg); border: 1.5px dashed var(--line-strong); }


.cargo-band {
  grid-column: 1 / -1; background: linear-gradient(135deg, var(--paper-dim), var(--paper)); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: start; margin: 2px 0;
}
.cargo-band .band-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--corten); font-weight: 600; }
.cargo-band h3 { font-size: 0.98rem; margin-top: 4px; }
.cargo-band p { font-size: 0.84rem; line-height: 1.5; }
@media (max-width: 720px) { .cargo-band { grid-template-columns: 1fr; padding: 16px 18px; gap: 8px; } }

.cargo-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; min-width: 0; cursor: pointer;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.cargo-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--line-strong); }
.cargo-card .product-media { aspect-ratio: 16/10; }
.cargo-card .product-body { gap: 13px; }
.cargo-unit-count { font-family: var(--font-mono); font-size: 0.78rem; color: var(--steel); }
.cargo-spec-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.cargo-spec-tags span { font-family: var(--font-mono); font-size: 0.68rem; background: var(--paper-dim); color: var(--steel); padding: 5px 11px; border-radius: var(--radius-full); }


.modal-backdrop {
  position: fixed; inset: 0; background: rgba(18,24,31,0.55); backdrop-filter: blur(3px); z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease); display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  position: relative; width: 100%; max-width: 560px; max-height: min(88vh, 780px); background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-modal); display: flex; flex-direction: column;
  transform: translateY(18px) scale(0.97); opacity: 0; transition: transform .24s var(--ease), opacity .24s var(--ease);
  overflow: hidden;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.modal-head h3 { font-size: 1.12rem; }
.modal-close { width: 38px; height: 38px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.18s var(--ease), border-color 0.18s var(--ease); }
.modal-close:hover { background: var(--paper); border-color: var(--ink); }
.modal-body { padding: 26px; overflow-y: auto; flex: 1; min-height: 0; }
.modal-footer { border-top: 1px solid var(--line); padding: 22px 26px; flex-shrink: 0; background: var(--paper); }

@media (max-width: 640px) {
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal { max-width: 100%; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-backdrop.open .modal { transform: translateY(0); }
}


.cart-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item-media { width: 64px; height: 64px; border-radius: var(--radius-sm); flex-shrink: 0; overflow: hidden; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.92rem; margin-bottom: 5px; overflow-wrap: break-word; }
.cart-item-meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--steel); }
.cart-item-remove { font-family: var(--font-mono); font-size: 0.74rem; color: var(--corten); margin-top: 8px; font-weight: 600; }
.cart-empty { text-align: center; padding: 54px 20px; color: var(--steel); }
.cart-empty a { display: inline; }
.modal-footer textarea { width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; margin: 10px 0; resize: vertical; min-height: 68px; background: var(--white); }
.modal-footer input { width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 10px; background: var(--white); }
.field-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); display: block; margin-bottom: 8px; }


.modal-body .media-frame { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; aspect-ratio: 16/10; }
.modal-detail { display: flex; flex-direction: column; gap: 18px; }
.process-note { font-size: 0.9rem; background: var(--corten-tint); color: var(--corten-dark); padding: 16px 18px; border-radius: var(--radius-sm); line-height: 1.6; margin: 0; }
.spec-list { border-top: 1px solid var(--line); margin-top: 18px; }
.spec-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.91rem; display: flex; gap: 12px; color: var(--ink); }
.spec-list li::before { content: '—'; color: var(--corten); flex-shrink: 0; font-weight: 600; }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 20px 0; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 40px; height: 40px; font-size: 1.1rem; transition: background 0.15s var(--ease); }
.qty-control button:hover { background: var(--paper); }
.qty-control input { width: 46px; text-align: center; border: none; background: none; height: 40px; }


.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea { border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 13px 15px; background: var(--white); width: 100%; transition: border-color 0.18s var(--ease); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--corten); }
.form-field textarea { min-height: 124px; resize: vertical; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }


.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; transition: border-color 0.18s var(--ease); }
.faq-item[open] { border-color: var(--corten); }
.faq-q { width: 100%; text-align: left; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; cursor: pointer; }
.faq-q .plus { font-family: var(--font-mono); color: var(--corten); font-size: 1.3rem; transition: transform .2s var(--ease); flex-shrink: 0; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 22px 22px; color: var(--steel); max-width: 70ch; line-height: 1.65; }


.resource-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.resource-tab { padding: 11px 22px; border-radius: var(--radius-full); border: 1.5px solid var(--line-strong); font-family: var(--font-mono); font-size: 0.84rem; transition: all 0.18s var(--ease); background: var(--white); }
.resource-tab:hover { border-color: var(--corten); color: var(--corten); }
.resource-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
#resources-grid.grid-3 { gap: 30px; }
.blog-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; min-width: 0; cursor: pointer;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--line-strong); }
.blog-media, .blog-card .media-frame { aspect-ratio: 16/9; overflow: hidden; }
.blog-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
.blog-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--corten); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.blog-body h3 { font-size: 1.08rem; overflow-wrap: break-word; line-height: 1.35; }
.blog-body p { font-size: 0.92rem; line-height: 1.6; }
.blog-body .card-go { margin-top: 4px; }

.article-body { max-width: 72ch; margin: 0 auto; }
.article-body h2 { margin: 46px 0 18px; }
.article-body h3 { margin: 32px 0 14px; }
.article-body p { margin-bottom: 20px; font-size: 1.04rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; color: var(--steel); }
.article-body li { margin-bottom: 10px; line-height: 1.65; }
.article-hero { background: linear-gradient(165deg, var(--ink), var(--ink-soft)); color: var(--white); padding: 72px 0 52px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(90px); background: radial-gradient(circle, rgba(193,85,47,0.3), transparent 70%); top: -200px; right: -100px; opacity: 0.6; }
.article-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); position: relative; }
.article-hero .eyebrow, .article-hero .breadcrumb { position: relative; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.76rem; color: var(--steel-light); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--corten); }


.quote-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.quote-card::before { content: '“'; position: absolute; top: 18px; left: 24px; font-family: var(--font-display); font-size: 3rem; color: var(--corten-tint); line-height: 1; z-index: 0; }
.quote-card p { font-size: 1.02rem; color: var(--ink); font-style: normal; position: relative; z-index: 1; line-height: 1.65; }
.quote-attrib { margin-top: 16px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--corten); }


.site-footer { background: linear-gradient(165deg, var(--ink), var(--ink-soft)); color: rgba(255,255,255,0.72); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid h4 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-grid li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--signal); }
.footer-brand p { color: rgba(255,255,255,0.58); margin: 16px 0 22px; max-width: 34ch; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: border-color 0.18s var(--ease), color 0.18s var(--ease); }
.footer-social a:hover { border-color: var(--signal); color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-family: var(--font-mono); font-size: 0.74rem; color: rgba(255,255,255,0.48); flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }


.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(0,0,0,0.32); }
@media (max-width: 480px) { .wa-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; } }


.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { height: 1px; background: var(--line); margin: 0; }
.badge { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; padding: 5px 12px; border-radius: var(--radius-full); border: 1px solid var(--line-strong); color: var(--steel); font-weight: 500; }
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--white); padding: 15px 24px; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.84rem; z-index: 200; opacity: 0; pointer-events: none; transition: all .28s var(--ease); max-width: calc(100vw - 32px); text-align: center; box-shadow: var(--shadow-lift); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


img, video, iframe { max-width: 100%; }
table { max-width: 100%; }
