@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/ppneuemontreal-book.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/ppneuemontreal-medium.ttf") format("truetype");
  font-weight: 560;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/ppneuemontreal-bold.ttf") format("truetype");
  font-weight: 800;
}
:root {
  --paper: #f1f3f2;
  --paper-2: #e1e7e4;
  --white-ink: #fffaf0;
  --navy: #23268a;
  --navy-deep: #101343;
  --ink: #11131e;
  --muted: #5a5d6c;
  --magenta: #ec1684;
  --magenta-deep: #b50f66;
  --cyan: #13b8cf;
  --cyan-deep: #0f8195;
  --line: rgba(17, 19, 30, .16);
  --shadow: 0 18px 48px rgba(17, 19, 30, .18);
  --wrap: min(1180px, calc(100% - 44px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PP Neue Montreal", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 20;
  background-image: linear-gradient(90deg, var(--ink) 1px, transparent 1px), linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: var(--wrap); margin: 0 auto; }
.topbar {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  pointer-events: none;
}
.topbar-inner {
  pointer-events: auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 18px 42px rgba(16, 19, 67, .16);
}
.brand img { width: 196px; height: auto; }
.nav-links { display: flex; justify-content: center; gap: 22px; font-size: 16px; font-weight: 800; color: var(--navy); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--magenta); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white-ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.hero {
  position: relative;
  min-height: 100dvh;
  color: var(--white-ink);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
#hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 68vh;
  object-fit: cover;
  object-position: center center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16,19,67,.92) 0%, rgba(16,19,67,.72) 35%, rgba(16,19,67,.22) 68%, rgba(16,19,67,.05) 100%),
    linear-gradient(0deg, rgba(16,19,67,.75) 0%, rgba(16,19,67,.08) 42%);
}
.hero-copy {
  width: var(--wrap);
  margin: 0 auto;
  padding: 156px 0 78px;
  max-width: 760px;
  justify-self: start;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.shop-line {
  margin: 0 0 18px;
  max-width: 510px;
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: .86;
  letter-spacing: -.055em;
  max-width: 780px;
  text-wrap: balance;
}
.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.22;
  color: rgba(255,250,240,.92);
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-hot { background: var(--magenta); color: var(--white-ink); }
.btn-hot:hover { background: var(--magenta-deep); }
.btn-cool { background: rgba(255,255,255,.9); color: var(--navy-deep); }
.btn-dark { background: var(--navy-deep); color: var(--white-ink); }
.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid var(--line);
  background: var(--navy-deep);
  color: var(--white-ink);
}
.fact {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 24px 30px;
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
  font-weight: 800;
  color: var(--cyan);
}
.fact:last-child { border-right: 0; }
section { padding: clamp(58px, 6vw, 92px) 0; }
.project-map { background: var(--paper); }
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}
.map-copy { display: flex; flex-direction: column; justify-content: space-between; }
h2 {
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: .92;
  letter-spacing: -.045em;
  max-width: 850px;
}
.copy-stack { display: grid; gap: 18px; }
.copy-stack p { margin-bottom: 0; max-width: 70ch; color: #303344; }
.shop-figure { margin: 0; display: flex; flex-direction: column; min-height: 100%; }
.shop-figure img { height: 100%; min-height: 620px; object-fit: cover; border-radius: 0; }
figcaption { font-size: 17px; color: var(--muted); margin-top: 12px; }
.paths { background: var(--white-ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.path-header { display: grid; grid-template-columns: 1fr .58fr; gap: 44px; align-items: end; margin-bottom: 38px; }
.path-header p, .catalog-copy p, .visit-copy p, .quote-copy p, .art-main p, .review-heading p { color: var(--muted); max-width: 66ch; }
.path-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.path {
  background: var(--white-ink);
  padding: clamp(28px, 3vw, 42px);
  min-height: 510px;
  display: flex;
  flex-direction: column;
}
.path-code { width: max-content; font-size: 16px; font-weight: 800; color: var(--navy); border-bottom: 6px solid var(--cyan); margin-bottom: 42px; }
.path h3 { font-size: clamp(31px, 3.3vw, 46px); line-height: .96; letter-spacing: -.035em; margin-bottom: 18px; }
.path p { color: #323546; margin-bottom: 26px; }
.path ul { margin: auto 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.path li { border-top: 1px solid var(--line); padding-top: 12px; color: var(--muted); }
.path-print .path-code { border-color: var(--magenta); }
.path-swag .path-code { border-color: var(--navy); }
.quote-lab { background: var(--navy); color: var(--white-ink); }
.quote-layout { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: stretch; }
.quote-photo img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.quote-copy { display: flex; flex-direction: column; justify-content: space-between; }
.quote-copy p { color: rgba(255,250,240,.78); font-size: 21px; }
.quote-list { counter-reset: quote; list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 1px; background: rgba(255,255,255,.18); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.quote-list li { counter-increment: quote; display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 20px 0; background: var(--navy); }
.quote-list li::before { content: counter(quote, decimal-leading-zero); color: var(--cyan); font-weight: 800; font-size: 20px; grid-row: 1 / span 2; }
.quote-list span { display: block; font-weight: 800; font-size: 22px; }
.quote-list small { display: block; grid-column: 2; color: rgba(255,250,240,.72); font-size: 18px; line-height: 1.42; margin-top: 2px; }
.art-proof { background: var(--paper-2); }
.art-layout { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(32px, 5vw, 68px); align-items: stretch; }
.art-main { display: flex; flex-direction: column; justify-content: space-between; }
.art-main p { font-size: 21px; }
.specs { margin: 34px 0 0; border-top: 2px solid var(--ink); }
.specs div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; border-bottom: 1px solid var(--line); padding: 22px 0; }
.specs dt { font-weight: 800; color: var(--magenta); }
.specs dd { margin: 0; color: #333647; }
.art-image { margin: 0; }
.art-image img { width: 100%; height: calc(100% - 42px); min-height: 610px; object-fit: cover; object-position: 28% center; }
.work-strip { padding: 0; background: var(--ink); }
.work-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr 1fr; }
.work-grid figure { margin: 0; position: relative; min-height: 320px; overflow: hidden; }
.work-grid img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .35s ease; }
.work-grid figure:hover img { transform: scale(1.04); }
.work-grid figcaption { position: absolute; left: 18px; bottom: 18px; margin: 0; padding: 8px 12px; background: rgba(16,19,67,.84); color: var(--white-ink); font-weight: 800; font-size: 16px; }
.reviews { background: var(--white-ink); }
.reviews-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(34px, 5vw, 66px); align-items: start; }
.review-cards { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-card { margin: 0; padding: 34px 0 34px 34px; background: var(--white-ink); }
.review-card blockquote { margin: 0; font-size: clamp(25px, 3vw, 41px); line-height: 1.05; letter-spacing: -.035em; }
.review-card figcaption { color: var(--navy); font-weight: 800; }
.catalog { background: var(--navy-deep); color: var(--white-ink); }
.catalog-layout { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.catalog-copy p { color: rgba(255,250,240,.74); font-size: 21px; }
.catalog-rail { display: flex; flex-wrap: wrap; gap: 10px; }
.catalog-rail span { padding: 15px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); color: var(--cyan); font-weight: 800; background: rgba(255,255,255,.04); }
.visit { background: var(--paper); }
.visit-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px, 5vw, 70px); align-items: stretch; }
.visit-copy { display: flex; flex-direction: column; justify-content: center; }
.visit-copy p { font-size: 21px; }
.visit-copy address { margin-top: 30px; font-style: normal; line-height: 1.6; border-top: 1px solid var(--line); padding-top: 24px; color: #313447; }
.map-panel { min-height: 520px; border: 1px solid var(--line); background: var(--paper-2); }
.map-panel iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }
.footer { background: var(--ink); color: rgba(255,250,240,.68); padding: 28px 0; font-size: 17px; }
.footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .topbar-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links { display: none; }
  .brand img { width: 170px; }
  .intro-band, .map-layout, .path-header, .path-grid, .quote-layout, .art-layout, .reviews-layout, .catalog-layout, .visit-layout { grid-template-columns: 1fr; }
  .shop-figure img, .quote-photo img, .art-image img { min-height: 420px; height: auto; }
  .path { min-height: auto; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --wrap: min(100% - 32px, 1180px); }
  body { font-size: 19px; }
  .topbar { top: 10px; width: calc(100% - 20px); }
  .topbar-inner { min-height: 58px; padding: 9px 10px; border-radius: 17px; }
  .brand img { width: 142px; }
  .phone-pill { min-height: 40px; padding: 0 12px; font-size: 15px; }
  .hero { display: block; min-height: 0; background: var(--navy-deep); padding-top: 78px; color: var(--white-ink); }
  #hero-img { position: relative; z-index: 0; height: auto; min-height: 0; aspect-ratio: 16 / 10.5; object-position: center; }
  .hero-scrim { display: none; }
  .hero-copy { width: var(--wrap); padding: 28px 0 38px; text-shadow: none; max-width: none; }
  .shop-line { font-size: 18px; margin-bottom: 14px; }
  h1 { font-size: clamp(43px, 13vw, 56px); line-height: .9; letter-spacing: -.045em; }
  .hero-lede { font-size: 20px; line-height: 1.34; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 56px; }
  .intro-band { display: block; }
  .fact { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: 20px; }
  section { padding: 54px 0; }
  h2 { font-size: clamp(36px, 11vw, 52px); line-height: .96; }
  .copy-stack p, .path-header p, .catalog-copy p, .visit-copy p, .quote-copy p, .art-main p, .review-heading p { max-width: 100%; }
  .path h3 { font-size: 34px; }
  .quote-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .quote-list small { font-size: 17px; }
  .specs div { grid-template-columns: 1fr; gap: 4px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid figure, .work-grid img { min-height: 260px; }
  .review-card { padding: 26px 0; }
  .review-card blockquote { font-size: 28px; }
  .map-panel, .map-panel iframe { min-height: 380px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 390px) {
  .brand img { width: 128px; }
  .phone-pill { font-size: 14px; padding: 0 10px; }
}
