:root {
  color-scheme: light;
  --ink: #161616;
  --paper: #f7f1e4;
  --paper-soft: #fffaf0;
  --rack: #d8d1c3;
  --rack-dark: #9c9487;
  --red: #b7352b;
  --red-dark: #8f271f;
  --yellow: #f2c84b;
  --blue: #2f6fdb;
  --mint: #5fc3a1;
  --shadow: 0 18px 44px rgba(22, 22, 22, 0.16);
  --max: 1180px;
  --header: 74px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  min-width: 0;
  font-family: Inter, "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(216, 209, 195, 0.48) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 241, 228, 0.68), rgba(247, 241, 228, 0.96) 46%, rgba(247, 241, 228, 1));
  z-index: -1;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: var(--header);
  border-bottom: 1px solid rgba(22, 22, 22, 0.18);
  background: rgba(247, 241, 228, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease, min-height 160ms ease;
}

.site-header.is-compact {
  box-shadow: none;
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(168px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Arial Narrow", "Barlow Condensed", Impact, Haettenschweiler, sans-serif;
  font-stretch: condensed;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-place {
  margin-top: 3px;
  color: #5d574e;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.header-call,
.button,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a {
  padding: 0 12px;
  color: #3b3832;
}

.nav-links a:hover {
  background: rgba(242, 200, 75, 0.45);
}

.header-call {
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper);
}

.hero,
.shop-section,
.gallery-section,
.pull-section,
.events-section,
.visit-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  grid-template-areas:
    "copy photo"
    "strip strip";
  align-items: center;
  gap: 22px 44px;
  padding: 34px 0 22px;
}

.hero-copy {
  grid-area: copy;
}

.eyebrow,
.section-kicker,
.gallery-tile span,
.range-code {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  color: var(--red-dark);
}

h1 {
  max-width: 10.8em;
  margin: 12px 0 18px;
  font-size: 4rem;
  line-height: 0.93;
}

.hero-text {
  max-width: 650px;
  margin: 0;
  font-size: 1.06rem;
  color: #38342f;
}

.hero-actions,
.pull-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  border: 2px solid var(--ink);
  padding: 0 18px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  background: transparent;
}

.button.secondary:hover {
  background: var(--yellow);
}

.utility-line {
  max-width: 560px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 4px solid var(--yellow);
  color: #4d473f;
  font-weight: 700;
}

.hero-photo {
  grid-area: photo;
  width: min(100%, 500px);
  justify-self: end;
  margin: 0;
}

.photo-frame {
  aspect-ratio: 1;
  padding: 12px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, var(--yellow) 0 17%, transparent 17% 100%),
    var(--paper-soft);
  box-shadow: var(--shadow);
}

.photo-frame img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame img {
  object-position: 48% 45%;
}

.hero-photo figcaption {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
}

.inventory-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.74);
}

.inventory-strip div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--rack);
}

.inventory-strip div:last-child {
  border-right: 0;
}

.inventory-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inventory-strip strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.28;
}

.shop-section,
.gallery-section,
.pull-section,
.events-section,
.visit-section {
  padding: 72px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.22);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-top: 10px;
}

h2 {
  margin: 0;
  font-size: 2.65rem;
}

.section-head p {
  margin: 0;
  color: #4b453d;
  font-size: 1rem;
}

.range-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.range-item {
  min-width: 0;
  padding: 18px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.74);
}

.range-code {
  display: inline-flex;
  min-width: 34px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
}

.range-item h3 {
  margin: 18px 0 8px;
  font-size: 1.55rem;
}

.range-item p {
  margin: 0;
  color: #4b453d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(164px, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.gallery-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--rack);
}

.gallery-tile.lead {
  grid-row: span 2;
}

.gallery-tile img {
  object-position: var(--focus, 50% 50%);
}

.gallery-tile:nth-child(1) img { --focus: 50% 48%; }
.gallery-tile:nth-child(2) img { --focus: 52% 48%; }
.gallery-tile:nth-child(3) img { --focus: 50% 50%; }
.gallery-tile:nth-child(4) img { --focus: 50% 44%; }
.gallery-tile:nth-child(5) img { --focus: 50% 58%; }
.gallery-tile:nth-child(6) img { --focus: 56% 52%; }
.gallery-tile:nth-child(7) img { --focus: 50% 50%; }

.gallery-tile figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 8px 9px;
  background: rgba(22, 22, 22, 0.88);
  color: #fff;
  border-left: 5px solid var(--yellow);
  transform: translateY(0);
}

.gallery-tile span,
.gallery-tile strong {
  display: block;
}

.gallery-tile strong {
  margin-top: 2px;
  font-size: 0.86rem;
  line-height: 1.18;
}

.pull-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(95, 195, 161, 0.22), transparent 38%),
    var(--paper-soft);
}

.pull-panel h2 {
  margin-top: 8px;
}

.pull-panel p {
  margin: 0;
  color: #3c3730;
}

.text-link {
  min-height: 44px;
  border-bottom: 3px solid var(--yellow);
  color: var(--ink);
}

.text-link:hover {
  border-bottom-color: var(--red);
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 32px;
  align-items: stretch;
}

.events-layout .section-head {
  display: block;
  margin-top: 10px;
}

.events-layout .section-head p {
  margin-top: 16px;
  max-width: 680px;
}

.event-notes {
  display: grid;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-notes li {
  padding: 14px 16px;
  border-left: 6px solid var(--mint);
  background: rgba(255, 250, 240, 0.78);
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 54px;
}

.visit-details {
  min-width: 0;
}

.visit-details h2 {
  margin: 8px 0 12px;
}

address {
  margin: 0 0 10px;
  font-style: normal;
  font-weight: 800;
}

address a,
.phone-link {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--red-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.visit-details p {
  margin: 8px 0 0;
  color: #4d473f;
  font-weight: 700;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 430px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
  border-top: 2px solid var(--ink);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span {
  color: #5b554d;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 1;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .gallery-tile figcaption {
    transition: background 180ms ease;
  }

  .gallery-tile:hover figcaption,
  .gallery-tile:focus-within figcaption {
    background: rgba(22, 22, 22, 0.92);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.35rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 22px 30px;
  }

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

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

  .pull-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .pull-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 112px;
  }

  .header-inner {
    width: min(var(--max), calc(100% - 24px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 8px 0;
  }

  .brand {
    min-height: 44px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-place {
    font-size: 0.72rem;
  }

  .header-call {
    min-width: 56px;
    padding: 0 12px;
  }

  .nav-links {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 0 11px;
  }

  .hero,
  .shop-section,
  .gallery-section,
  .pull-section,
  .events-section,
  .visit-section,
  .site-footer {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "strip";
    padding: 28px 0 18px;
  }

  h1 {
    max-width: 9.6em;
    font-size: 2.32rem;
    line-height: 0.98;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    flex: 1 1 150px;
    padding: 0 13px;
    text-align: center;
  }

  .utility-line {
    margin-top: 14px;
  }

  .hero-photo {
    width: min(100%, 420px);
    justify-self: center;
  }

  .photo-frame {
    padding: 9px;
  }

  .inventory-strip {
    grid-template-columns: 1fr;
  }

  .inventory-strip div {
    padding: 13px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--rack);
  }

  .inventory-strip div:last-child {
    border-bottom: 0;
  }

  .shop-section,
  .gallery-section,
  .pull-section,
  .events-section,
  .visit-section {
    padding: 54px 0;
  }

  .section-head,
  .events-layout,
  .visit-section {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1;
  }

  .range-list {
    grid-template-columns: 1fr;
  }

  .range-item {
    padding: 16px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
    padding: 0;
  }

  .gallery-tile {
    display: grid;
    grid-column: span 3;
    grid-template-rows: auto 1fr;
    aspect-ratio: auto;
  }

  .gallery-tile.lead {
    grid-column: span 3;
    grid-row: auto;
  }

  .gallery-tile img {
    width: 100%;
    aspect-ratio: 1;
  }

  .gallery-tile figcaption {
    position: static;
    min-height: 76px;
    padding: 8px;
    background: var(--ink);
  }

  .gallery-tile:nth-child(n + 5) {
    grid-column: span 2;
  }

  .gallery-tile strong {
    font-size: 0.78rem;
  }

  .pull-panel {
    padding: 20px;
  }

  .pull-actions {
    gap: 8px;
  }

  .visit-actions {
    justify-content: stretch;
    max-width: none;
  }

  .visit-actions .text-link {
    flex: 1 1 110px;
  }

  .site-footer {
    display: grid;
  }

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

@media (max-width: 350px) {
  :root {
    --header: 116px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .pull-actions,
  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .visit-actions .text-link {
    width: 100%;
  }

  .gallery-grid {
    gap: 7px;
  }

  .gallery-tile figcaption {
    min-height: 82px;
  }

  .gallery-tile:nth-child(n + 5) figcaption {
    min-height: 94px;
    padding: 7px 6px;
  }

  .gallery-tile:nth-child(n + 5) span {
    font-size: 0.7rem;
  }

  .gallery-tile:nth-child(n + 5) strong {
    font-size: 0.72rem;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
