:root {
  --canvas: #f7f4ed;
  --surface: #ffffff;
  --soft: #ece8df;
  --ink: #141414;
  --muted: #5f5a52;
  --line: #d8d2c8;
  --accent: #c2410c;
  --font: "Avenir Next", "Century Gothic", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.10);
  --motion: 200ms ease-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--surface);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-128px);
  transition: transform var(--motion);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.96);
}

.header-inner {
  width: min(100% - 96px, 1200px);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.brand img {
  width: 204px;
  height: 48px;
}

.desktop-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.header-link,
.mobile-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--motion);
}

.nav-list a:hover,
.header-link:hover,
.mobile-nav a:hover {
  color: var(--accent);
}

.header-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.mobile-actions,
.mobile-nav {
  display: none;
}

.contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-link span {
  color: var(--accent);
  text-transform: uppercase;
}

.contact-link-mobile {
  display: none;
}

.city-header-label {
  margin: 0 0 0 auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.menu-button {
  width: 48px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.button {
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow var(--motion), background var(--motion), color var(--motion);
}

.button-primary {
  background: var(--accent);
  color: var(--surface);
}

.button-primary:hover {
  box-shadow: var(--shadow-hover);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--surface);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.section {
  padding: 96px 48px;
}

.section-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display,
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.city-title {
  letter-spacing: -0.03em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: 61px;
  line-height: 1;
}

h2 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: 39px;
  line-height: 1.15;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.15;
}

.lead {
  max-width: 55ch;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.body-copy {
  max-width: 65ch;
  color: var(--muted);
}

.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-line span::before {
  content: "•";
  margin-right: 12px;
  color: var(--accent);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 560px;
}

.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.photo-mosaic figure:first-child {
  grid-row: span 2;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic figure:first-child img {
  object-position: center;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  width: min(100% - 96px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item {
  padding: 32px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.15;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading-row {
  margin-bottom: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading-row h2,
.section-heading-row p {
  margin-bottom: 0;
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.event-media {
  min-height: 520px;
  background: var(--soft);
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-status {
  width: max-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-title {
  margin-bottom: 24px;
  font-size: 31px;
  line-height: 1.15;
}

.event-meta {
  margin: 0 0 32px;
}

.event-meta div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.event-meta div:last-child {
  border-bottom: 1px solid var(--line);
}

.event-meta dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 0;
  font-weight: 700;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.work-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--motion);
}

.work-tile span {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--motion);
}

.work-tile:hover img,
.work-tile:focus-visible img {
  opacity: 0.2;
}

.work-tile:hover span,
.work-tile:focus-visible span {
  opacity: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.process-step {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.process-number {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 25px;
  font-weight: 700;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.split-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.faq-list {
  max-width: 880px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 64px;
  padding: 16px 48px 16px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 65ch;
  margin-bottom: 24px;
  color: var(--muted);
}

.faq-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.cta-band {
  background: var(--accent);
  color: var(--surface);
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.cta-inner h2,
.cta-inner p {
  margin-bottom: 0;
}

.cta-inner .eyebrow {
  color: var(--surface);
}

.site-footer {
  padding: 64px 48px 32px;
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  width: min(100%, 1200px);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.8fr));
  gap: 48px;
}

.footer-brand img {
  width: 204px;
  height: 48px;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--surface);
}

.footer-copy,
.footer-nap,
.footer-links a {
  color: #d8d2c8;
}

.footer-copy,
.footer-nap {
  max-width: 42ch;
  margin-bottom: 0;
}

.footer-nap a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-heading {
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #4a4a4a;
  color: #d8d2c8;
  font-size: 13px;
}

.draft-note {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

/* City selector */
.city-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.city-page .site-header {
  position: relative;
}

.city-main {
  flex: 1;
  padding: 64px 48px 96px;
}

.city-intro {
  width: min(100%, 1200px);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}

.city-intro h1 {
  margin-bottom: 0;
}

.city-intro .lead {
  margin-bottom: 0;
}

.city-grid {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.city-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  transition: opacity var(--motion);
}

.city-card:hover img,
.city-card:focus-visible img {
  opacity: 0.3;
}

.city-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
}

.city-code {
  margin-bottom: 8px;
  display: block;
  color: #f7f4ed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-title {
  margin-bottom: 12px;
  display: block;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.15;
}

.city-description {
  margin-bottom: 24px;
  display: block;
  color: #f7f4ed;
}

.city-state {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #f7f4ed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.city-card-live .city-state {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--accent);
  text-decoration: none;
}

.city-footer {
  padding: 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.city-footer-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--motion), transform var(--motion);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    padding: 96px 24px 32px;
    background: var(--canvas);
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav a {
    width: 100%;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .hero-grid,
  .event-panel,
  .split-feature,
  .city-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .photo-mosaic {
    min-height: 480px;
  }

  .event-media {
    min-height: 420px;
  }

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

  .city-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    min-height: 400px;
  }

  .city-card img {
    position: absolute;
    inset: 0;
  }
}

@media (max-width: 700px) {

  .header-inner > .contact-link {
    display: none;
  }

  .contact-link-mobile {
    width: 48px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    text-transform: uppercase;
  }

  .city-header-label {
    display: none;
  }

  .city-page .header-inner > .contact-link {
    width: 48px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0;
    text-decoration: none;
  }

  .city-page .header-inner > .contact-link::after {
    content: "Email";
    font-size: 13px;
    text-transform: uppercase;
  }

  .header-inner {
    width: min(100% - 48px, 1200px);
    gap: 12px;
  }

  .brand img {
    width: 160px;
    height: 44px;
  }

  .header-link {
    width: 48px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0;
  }

  .header-link::after {
    content: "Call";
    font-size: 13px;
  }

  .section {
    padding: 64px 24px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 16px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions,
  .event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .event-actions .button {
    width: 100%;
  }

  .photo-mosaic {
    min-height: 360px;
  }

  .proof-grid {
    width: min(100% - 48px, 1200px);
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section-heading-row,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .event-content {
    padding: 32px 24px;
  }

  .event-media {
    min-height: 320px;
  }

  .event-meta div {
    grid-template-columns: 80px 1fr;
  }

  .work-tile {
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }

  .work-tile img {
    aspect-ratio: 1;
    border-radius: var(--radius);
  }

  .work-tile span {
    position: static;
    min-height: 48px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
    text-align: left;
  }

  .work-tile:hover img,
  .work-tile:focus-visible img {
    opacity: 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-number {
    margin-bottom: 16px;
  }

  .site-footer {
    padding: 64px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom,
  .city-footer-inner {
    flex-direction: column;
  }

  .city-main {
    padding: 64px 24px;
  }

  .city-intro {
    gap: 24px;
  }

  .city-card {
    min-height: 360px;
  }

  .city-footer {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
