:root {
  --brand-red: #eb0d1e;
  --brand-red-deep: #ba101d;
  --brand-ink: #121212;
  --brand-ink-soft: #3e3a39;
  --brand-cream: #f5f1eb;
  --brand-white: #ffffff;
  --brand-line: rgba(18, 18, 18, 0.1);
  --brand-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1080px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(235, 13, 30, 0.18), transparent 32%),
    linear-gradient(180deg, #fff8f8 0%, var(--brand-cream) 55%, #fff 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  width: min(260px, 46vw);
  min-width: 180px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  transform: scale(1.14);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-nav a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-white);
  background: var(--brand-red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1.5rem auto auto 55%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(235, 13, 30, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid,
.store-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.4fr 0.9fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-red-deep);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.hero-text,
.section-heading p,
.story-card p,
.store-copy p,
.contact-card p {
  color: var(--brand-ink-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: var(--brand-white);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-deep));
  box-shadow: 0 18px 35px rgba(186, 16, 29, 0.28);
}

.button-secondary {
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel,
.story-grid,
.jobs-grid {
  display: grid;
  gap: 1rem;
}

.stat-card,
.story-card,
.job-card,
.contact-card,
.store-visual,
.store-copy {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--brand-shadow);
}

.stat-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.stat-card span {
  color: var(--brand-ink-soft);
}

.section {
  padding: 2.25rem 0 4.25rem;
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(235, 13, 30, 0.06), transparent 35%),
    rgba(255, 255, 255, 0.64);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.section-heading p {
  max-width: 60ch;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.job-card,
.contact-card,
.store-copy {
  padding: 1.5rem;
}

.story-card h3,
.job-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.accent-card {
  background: linear-gradient(180deg, #fff 0%, #fff3f4 100%);
  border-color: rgba(235, 13, 30, 0.14);
}

.store-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: start;
  gap: 2.4rem;
}

.store-visual {
  overflow: hidden;
  align-self: start;
  padding: 1rem;
}

.store-photo {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  aspect-ratio: 1 / 1;
  background: #f3f0ea;
}

.store-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.store-copy {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  min-height: 100%;
}

.store-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.store-address {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.store-address strong {
  font-size: 1.1rem;
}

.store-address p {
  margin: 0;
}

.store-address a {
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.feature-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: #fff6f6;
  border: 1px solid rgba(235, 13, 30, 0.08);
}

.feature-list span {
  color: var(--brand-ink-soft);
}

.brand-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  max-width: 70rem;
}

.brand-chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.05);
}

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

.job-role {
  margin-bottom: 0.4rem;
  font-weight: 800;
  color: var(--brand-red-deep);
}

.job-card ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  color: var(--brand-ink-soft);
  line-height: 1.6;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.contact-card-primary {
  color: var(--brand-white);
  background: linear-gradient(160deg, var(--brand-ink), #2d2b2b);
}

.contact-card-primary .eyebrow,
.contact-card-primary p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  color: var(--brand-ink-soft);
}

.footer-wrap a {
  padding: 0.35rem 0;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-grid,
  .store-grid,
  .contact-grid,
  .story-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .section-heading,
  .section-heading p,
  .store-copy h2,
  .brand-chip-grid {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    min-height: 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .section {
    padding: 1.8rem 0 3.2rem;
  }

  .story-card,
  .job-card,
  .contact-card,
  .store-copy,
  .stat-card {
    padding: 1.2rem;
  }
}
