:root {
  --ink: #121a21;
  --ink-2: #1e2230;
  --paper: #eaeae6;
  --paper-2: #f4f4f0;
  --paper-3: #ffffff;
  --rule: #d9d8d2;
  --rule-strong: #2c2e35;
  --muted: #64748e;
  --muted-2: #707176;

  --forest: #357b69;
  --forest-deep: #20604f;
  --teal: #20bdda;
  --teal-light: #5ecde3;
  --sunset: #ff611f;
  --sunset-soft: #ff7c28;
  --gold: #e8b653;
  --lime: #86bf43;
  --coral: #e95a3a;
  --mint: #4cb999;

  --accent: var(--forest);
  --accent-ink: #ffffff;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 48px);

  --nav-height: 130px;

  --font-display: 'Archivo', 'Archivo Black', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-display-heavy: 'Archivo Black', 'Archivo', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

#map, #about, #shop-dine, #getting-around, #partners {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}
#partners {
  scroll-margin-top: calc(var(--nav-height) + clamp(48px, 6vw, 88px));
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  font-family: 'Archivo Black', 'Archivo', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-transform: none;
}
.display em {
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-style: italic;
  font-weight: 600;
}

.h-xl { font-size: clamp(40px, 6.4vw, 92px); }
.h-lg { font-size: clamp(32px, 4.2vw, 56px); }
.h-md { font-size: clamp(24px, 2.4vw, 34px); }
.h-sm { font-size: clamp(20px, 1.8vw, 26px); }

.prose p {
  font-size: 16px;
  line-height: 1.65;
  color: #2c2e35;
  max-width: 62ch;
  text-wrap: pretty;
}
.prose p + p { margin-top: 0.9em; }

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

.rule { height: 1px; background: var(--rule); border: none; margin: 0; }
.rule-strong { background: var(--rule-strong); height: 1px; }

/* ------- Top nav ------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234, 234, 230, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 20px;
  max-height: 84px;
  flex-shrink: 0;
}
.brandmark img {
  width: auto;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.brandmark .brand-oak {
  height: 68px;
  max-height: 68px;
  width: auto;
}
.brandmark .brand-osdeg {
  height: 58px;
  max-height: 58px;
  width: auto;
}
.brandmark .brand-sep {
  width: 1px;
  height: 50px;
  background: var(--rule-strong);
  opacity: 0.4;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .brandmark .brand-osdeg { display: none; }
  .brandmark .brand-sep { display: none; }
  :root { --nav-height: 96px; }
  .brandmark .brand-oak { height: 56px; max-height: 56px; }
}
.topnav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.topnav nav a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .15s ease;
}
.topnav nav a:hover { opacity: 1; }
.topnav .cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
}
.topnav .cta:hover { background: var(--accent); opacity: 1; }
@media (max-width: 780px) {
  .topnav nav a:not(.cta) { display: none; }
}

/* ------- Map section (Shop·Dine·Explore heading + map embed) ------- */
.map-wrap {
  position: relative;
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) 0 48px;
  color: var(--paper);
}
.map-wrap .section-head h2 { color: var(--paper); }
.map-wrap .section-head .deck { color: rgba(234,234,230,0.72); }
.map-intro {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.map-intro-mark {
  display: block;
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  width: clamp(320px, 38vw, 540px);
  height: auto;
}
.map-intro p {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  color: rgba(234,234,230,0.82);
  max-width: 92ch;
  text-wrap: pretty;
}
.map-embed {
  background: #0a0f14;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 90vh;
  min-height: 90dvh;
  max-height: 90vh;
  max-height: 90dvh;
  height: 90vh;
  height: 90dvh;
  border: 0;
}
.map-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.map-cta-row .note {
  margin: 0;
  flex: 1 1 420px;
  font-size: 15px;
  color: rgba(234,234,230,0.72);
  line-height: 1.6;
}
.map-cta-row .note a {
  color: var(--paper);
  border-bottom: 1px solid rgba(234,234,230,0.5);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.map-cta-row .note a:hover {
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.map-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  color: rgba(234,234,230,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-foot a { color: var(--paper); }
.map-foot a:hover { color: var(--teal-light); }

/* ------- Content sections ------- */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--rule); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4.5vw, 72px);
  margin-bottom: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 780px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 24px);
  }
}
.section-head .lead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-head h2 { margin: 0; color: var(--ink); max-width: 16ch; }
.section-head .deck {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  color: #2c2e35;
  max-width: 64ch;
  text-wrap: pretty;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) {
  .cols-3 { grid-template-columns: 1fr; }
}
.col-block { display: flex; flex-direction: column; gap: 12px; }
.col-block .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-top: 1px solid var(--rule-strong);
  padding-top: 10px;
}
.col-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.col-block p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2c2e35;
}

/* ------- Stats strip ------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
@media (max-width: 780px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat .k {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.4;
}

/* ------- Section top banner photo ------- */
.banner-section { padding-top: 0; }
.section-banner {
  width: 100%;
  aspect-ratio: 16 / 7.7;
  max-height: 728px;
  overflow: hidden;
  margin-bottom: clamp(56px, 7vw, 96px);
  background: var(--ink-2);
}
@media (max-width: 780px) {
  .section-banner { aspect-ratio: 16 / 10; max-height: 420px; }
}
.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------- Feature photo grid ------- */
/* Left: 1 wide photo (~4:3). Right: staggered 2x2 with 60/40 top row, 40/60 bottom row. */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 8 / 3;
  margin: clamp(16px, 2vw, 28px) 0;
}
.feature-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink-2);
}
.feature-grid .feature-main {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}
.feature-grid figure:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
.feature-grid figure:nth-child(3) { grid-column: 9 / 11; grid-row: 1; }
.feature-grid figure:nth-child(4) { grid-column: 6 / 8;  grid-row: 2; }
.feature-grid figure:nth-child(5) { grid-column: 8 / 11; grid-row: 2; }
.feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 780px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 10px;
  }
  .feature-grid .feature-main {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .feature-grid figure:nth-child(n+2) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }
}

.about-outro {
  margin-top: clamp(48px, 6vw, 80px);
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ghost-invert {
  background: transparent;
  color: var(--paper);
  border-color: rgba(234,234,230,0.35);
}
.btn-ghost-invert:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ------- Transit panel ------- */
.transit {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.transit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(280px, 38%, 560px);
  aspect-ratio: 1;
  background-image: url('img/osdeg-streetsgrid.png');
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.transit > .container { position: relative; z-index: 1; }
.transit .section-head h2 { color: var(--paper); }
.transit .section-head .deck { color: rgba(234,234,230,0.72); }
.transit-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
}
@media (max-width: 900px) {
  .transit-body { grid-template-columns: 1fr; }
}
.transit-photo-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: flex-start;
}
.transit-photo-stack .transit-photo { align-self: stretch; }
.transit-cta {
  margin-top: clamp(4px, 1vw, 12px);
}
.transit-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.08);
}
.transit-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.transit .modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.mode {
  background: rgba(18, 26, 33, 0.92);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.mode .icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--teal-light);
}
.mode h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.mode p {
  margin: 0;
  color: rgba(234,234,230,0.7);
  font-size: 14px;
  line-height: 1.55;
}
.transit-cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

/* ------- Partners ------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; }
}
.partner-card {
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.partner-card:hover { border-color: var(--ink); }
.partner-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--bar, var(--forest));
}
.partner-card.bar-forest { --bar: var(--forest); }
.partner-card.bar-teal { --bar: var(--teal); }
.partner-card.bar-sunset { --bar: var(--sunset); }
.partner-card .mark {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(8px, 1vw, 14px);
}
.partner-card .mark img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.partner-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  text-wrap: balance;
  max-width: 18ch;
  margin-inline: auto;
}
.partner-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #2c2e35;
}
.partner-card .card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner-card .card-foot .mark-acronym {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bar, var(--forest));
}
.partner-card .card-foot a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.partner-card .card-foot a:hover {
  color: var(--bar, var(--forest));
  border-color: var(--bar, var(--forest));
}

/* ------- Footer ------- */
.site-foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0 48px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 780px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-grid h5 {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,234,230,0.5);
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-grid a { color: rgba(234,234,230,0.85); font-size: 14px; }
.foot-grid a:hover { color: var(--teal-light); }
.foot-seal img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}
.foot-fieldguide {
  margin-top: 24px;
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
}
.foot-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234,234,230,0.45);
}
