:root {
    --bg: #0d0f14;
    --surface: #151820;
    --card: #1c2030;
    --border: #2a2f42;
    --accent: #f5a623;
    --accent2: #e8621a;
    --text: #e8eaf0;
    --muted: #7a7f96;
    --link: #c8d0e8;
    --link-hover: #f5a623;
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  .wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 15px;
  }
 
  /* ── Header ── */
  .site-header {
    text-align: center;
    margin-bottom: 64px;
  }
 
  .site-header .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
 
  .site-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    letter-spacing: .04em;
    line-height: 1;
    background: linear-gradient(130deg, #ffffff 30%, var(--accent) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .site-header p {
    margin-top: 14px;
    font-size: .95rem;
    color: var(--muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
 
  .divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    margin: 20px auto 0;
  }
 
  /* ── Products Section ── */
  .products-section {
    margin-bottom: 48px;
  }
 
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
 
  @media (max-width: 700px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr; }
  }
 
  .prod-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .25s, box-shadow .25s, transform .2s;
  }
 
  .prod-card:hover {
    border-color: rgba(245,166,35,.5);
    box-shadow: 0 6px 28px rgba(245,166,35,.1);
    transform: translateY(-2px);
  }
 
  .prod-card-icon {
    width: 38px;
    height: 38px;
    background: #e32625;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .prod-card-icon svg { width: 18px; height: 18px; fill: #fff; }
 
  .prod-card-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    transition: color .2s;
    line-height: 1.3;
  }
 
  .prod-card:hover .prod-card-label { color: #019a4b; }
 
  /* ── Quick Links ── */
  .quick-links-section {
    margin-bottom: 48px;
  }
 
  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .08em;
    color: #171717;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 0px;
  }
 
  .section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
  }
 
  .section-heading span {
    color: #e32625;
  }
 
  .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
 
  @media (max-width: 700px) {
    .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 400px) {
    .quick-links-grid { grid-template-columns: 1fr; }
  }
 
  .ql-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .25s, box-shadow .25s, transform .2s;
  }
 
  .ql-card:hover {
    border-color: rgba(245,166,35,.5);
    box-shadow: 0 6px 28px rgba(245,166,35,.1);
    transform: translateY(-2px);
  }
 
  .ql-icon {
    width: 38px;
    height: 38px;
    background: #e32625;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .ql-icon svg { width: 18px; height: 18px; fill: #fff; }
 
  .ql-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    transition: color .2s;
  }
 
  .ql-card:hover .ql-label { color: #019a4b; }
 
  /* ── Location blocks ── */
  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
 
  @media (max-width: 700px) {
    .locations-grid { grid-template-columns: 1fr; }
  }
 
  .loc-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
  }
 
  .loc-block:hover {
    border-color: rgba(245,166,35,.45);
    box-shadow: 0 8px 36px rgba(245,166,35,.08);
  }
 
  .loc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(245,166,35,.08) 0%, transparent 70%);
  }
 
  .loc-icon {
    width: 36px;
    height: 36px;
    background: #e32625;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .loc-icon svg { width: 18px; height: 18px; fill: #fff; }
 
  .loc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .06em;
    color: var(--text);
  }
 
  .loc-count {
    margin-left: auto;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--accent);
    background: rgba(245,166,35,.12);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    display: none;
  }
 
  .loc-links {
    padding: 14px 22px 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
 
  .loc-links li a {
    display: block;
    font-size: .82rem;
    color: var(--link);
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background .18s, color .18s, padding-left .18s;
    line-height: 1.45;
  }
 
  .loc-links li a:hover {
    color: #019a4b;
    background: rgba(245,166,35,.08);
    padding-left: 14px;
  }
 
  .loc-links li a::before {
    content: '→ ';
    color: var(--accent2);
    font-size: .75rem;
    margin-right: 4px;
    transition: margin-right .18s;
  }
 
  .loc-links li a:hover::before { margin-right: 6px; }
 
  /* ── Footer ── */
  .site-footer {
    text-align: center;
    margin-top: 56px;
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .04em;
  }
 
  .site-footer a { color: var(--accent); text-decoration: none; }