
:root {
  --paper: #ffffff;
  --ink: #0a0a0a;
  --soft: #f5f5f5;
  --line: #d7d7d7;
  --muted: #4a4a4a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: #fff; }
.header-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 16px 0; }
.brand-main img { width: 108px; height: auto; }
.header-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.header-nav a { font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.hero { padding: 54px 0 44px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,0.85fr); gap: 40px; align-items: center; }
.hero h1 {
  font-size: clamp(42px, 8vw, 96px);
  line-height: .94;
  letter-spacing: -3px;
  margin: 0 0 18px;
  font-weight: 900;
}
.hero p { font-size: 20px; margin: 0 0 18px; max-width: 760px; }
.hero-note { color: var(--muted); font-size: 15px !important; }
.hero-logo-wrap { border: 2px solid var(--ink); padding: 18px; background: #fff; }
.hero-logo-wrap img { width: min(100%, 360px); margin: 0 auto; }
.section { padding: 0 0 56px; }
.section-title {
  margin: 0 0 18px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -1px;
}
.section-intro { margin: 0 0 26px; max-width: 800px; color: #222; }
.store-card {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px;
  border: 2px solid var(--ink); padding: 24px; align-items: center; background: #fff;
}
.store-card h3, .map-card h3 { margin: 0 0 10px; font-size: 28px; letter-spacing: -0.5px; }
.store-card p, .map-card p { margin: 0; color: #202020; }
.btn {
  display: inline-block; background: var(--ink); color: #fff; padding: 14px 20px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.map-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.map-card {
  border: 2px solid var(--ink); padding: 22px; background: #fff; transition: transform .18s ease, box-shadow .18s ease;
}
.map-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.08); }
.map-logo { display: block; height: 92px; width: auto; max-width: 82%; object-fit: contain; margin: 0 0 18px; }
.map-image { height: 280px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.map-image img { max-height: 100%; width: auto; }
.card-linkline { margin-top: 18px; display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.about-grid { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 28px; align-items: start; }
.about-mark img { width: 150px; }
.about-copy p { margin: 0 0 16px; }
.footer { border-top: 1px solid var(--line); padding: 24px 0 34px; color: #555; font-size: 13px; }
.smallcaps { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #333; margin: 0 0 10px; }
@media (max-width: 860px) {
  .hero-grid, .map-grid, .about-grid, .store-card { grid-template-columns: 1fr; }
  .map-image { height: 220px; }
  .map-logo { height: 78px; max-width: 78%; }
  .header-row { align-items: flex-start; flex-direction: column; }
}
