@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  --graphite: #171b1a;
  --graphite-soft: #242a28;
  --paper: #f1f2ee;
  --river: #d5d8d4;
  --spruce: #233b34;
  --spruce-light: #345349;
  --coral: #b74431;
  --coral-dark: #963423;
  --brass: #c9a85a;
  --ink: #17201d;
  --muted: #4c5551;
  --white: #f8f9f6;
  --line: rgba(23, 32, 29, .18);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", Verdana, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.58;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.015em;
}

.site-header {
  min-height: 72px;
  padding: .7rem var(--gutter);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 2rem;
  color: var(--white);
  background: var(--graphite);
  position: relative;
  z-index: 10;
}
.wordmark {
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: .42rem;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .035em;
}
.wordmark strong { font-size: 1.65rem; line-height: 1; }
.wordmark span { color: var(--coral); font-size: 1.03rem; letter-spacing: .11em; }
.site-header nav { display: flex; gap: clamp(1rem, 2.4vw, 2.25rem); }
.site-header nav a {
  color: #d9ddda;
  font-size: .82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.site-header nav a:hover { color: var(--white); }
.phone-lockup {
  justify-self: end;
  display: grid;
  text-decoration: none;
  text-align: right;
  line-height: 1.05;
}
.phone-lockup span {
  color: var(--brass);
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.phone-lockup strong { font-family: var(--display); font-size: 1.3rem; letter-spacing: .02em; }

.hero { position: relative; background: var(--graphite); }
#hero-img {
  width: 100%;
  height: auto;
  min-height: 64vh;
  max-height: 72vh;
  object-fit: cover;
  object-position: center;
}
.hero-plate {
  width: min(92vw, 1180px);
  margin: -6.25rem auto 0;
  padding: clamp(1.5rem, 3vw, 2.7rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 3rem;
  align-items: end;
  color: var(--white);
  background: var(--graphite);
  border-top: 5px solid var(--coral);
}
.hero-plate h1 { margin-bottom: .65rem; font-size: clamp(3.3rem, 7vw, 6.8rem); }
.hero-plate p { max-width: 49ch; margin-bottom: 0; color: #d5dbd7; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: .72rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease-out, background-color .18s ease-out;
  white-space: nowrap;
}
.button:hover, .text-link:hover { transform: translateY(-2px); }
.button-coral { background: var(--coral); color: var(--white); }
.button-coral:hover { background: var(--coral-dark); }
.text-link {
  display: inline-block;
  color: var(--white);
  text-underline-offset: .35rem;
  transition: transform .18s ease-out;
}
.rating {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 249, 246, .18);
  font-size: .86rem !important;
  letter-spacing: .025em;
}
.rating span { color: var(--brass); letter-spacing: .1em; }

.section-inner { width: min(100%, var(--content)); margin-inline: auto; padding-inline: var(--gutter); }
.section-pad { padding-block: clamp(5rem, 9vw, 9rem); }

.premise { background: var(--paper); }
.premise-grid { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.premise h2 { max-width: 7ch; margin: 0; font-size: clamp(4rem, 8vw, 8rem); color: var(--spruce); }
.premise-copy { max-width: 62ch; padding-top: .5rem; }
.premise-copy p { font-size: clamp(1.05rem, 1.5vw, 1.27rem); }
.premise-copy p:first-child { font-weight: 700; color: var(--spruce); }
.premise-copy p:last-child { margin-bottom: 0; }

.craft { padding-bottom: 0; background: var(--river); }
.craft-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.bench-photo { margin: 0; }
.bench-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; }
figcaption { margin-top: .65rem; color: var(--muted); font-size: .8rem; }
.craft-copy h2 { max-width: 9ch; margin-bottom: 1.5rem; font-size: clamp(3.4rem, 6vw, 6.5rem); }
.craft-intro { max-width: 48ch; font-size: 1.13rem; }
.ledger { margin: 2.25rem 0 0; border-top: 2px solid var(--ink); }
.ledger div { padding: 1.15rem 0; display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; border-bottom: 1px solid var(--line); }
.ledger dt { font-family: var(--display); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .035em; }
.ledger dd { margin: 0; }
.detail-strip {
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  background: var(--graphite);
}
.detail-copy { padding: clamp(2rem, 5vw, 5.5rem); color: var(--white); align-self: center; }
.detail-copy h3 { max-width: 9ch; margin-bottom: 1rem; font-size: clamp(2.3rem, 4vw, 4.3rem); }
.detail-copy p { max-width: 40ch; margin: 0; color: #cfd5d1; }
.detail-strip img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 54% 45%; }

.mounts { background: var(--paper); }
.mounts h2 { max-width: 15ch; margin-bottom: clamp(3rem, 7vw, 6rem); font-size: clamp(3.3rem, 6.2vw, 6.4rem); }
.mount-index { border-top: 2px solid var(--ink); }
.mount-index article {
  padding: 1.7rem 0;
  display: grid;
  grid-template-columns: 3rem minmax(200px, .7fr) minmax(0, 1.3fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}
.index-mark { font-family: var(--display); font-size: 1rem; color: var(--coral); font-weight: 700; }
.mount-index h3 { margin: 0; font-size: clamp(1.9rem, 3vw, 3.15rem); }
.mount-index p { max-width: 58ch; margin: 0; }

.reviews { background: var(--spruce); color: var(--white); }
.reviews h2 { max-width: 11ch; margin-bottom: clamp(3rem, 7vw, 6rem); font-size: clamp(3.7rem, 7vw, 7.2rem); }
.review-pair { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 6rem); }
.review-pair blockquote { margin: 0; padding-top: 1.4rem; border-top: 1px solid rgba(248,249,246,.35); }
.review-pair p { max-width: 34ch; margin-bottom: 1.35rem; font-family: var(--display); font-size: clamp(1.8rem, 3.2vw, 3.1rem); line-height: 1.1; }
.review-pair cite { color: var(--brass); font-style: normal; font-weight: 700; }
.review-close { max-width: 58ch; margin: clamp(3rem, 7vw, 6rem) 0 0 auto; padding-top: 1.25rem; border-top: 1px solid rgba(248,249,246,.2); color: #d7dfda; }

.path { background: var(--paper); }
.path h2 { margin-bottom: clamp(3rem, 6vw, 5rem); font-size: clamp(3.5rem, 6.5vw, 6.5rem); }
.craft-path { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; border-top: 3px solid var(--coral); }
.craft-path li { min-width: 0; padding: 1.4rem 1.3rem 0 0; position: relative; }
.craft-path li::before { content: ""; width: 12px; height: 12px; position: absolute; top: -7px; left: 0; background: var(--coral); border-radius: 50%; }
.craft-path strong { display: block; margin-bottom: .6rem; font-family: var(--display); font-size: 1.42rem; line-height: 1.05; }
.craft-path span { display: block; padding-right: .8rem; color: var(--muted); font-size: .94rem; line-height: 1.45; }

.visit { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--graphite); color: var(--white); }
.map-fallback {
  min-height: 660px;
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--river);
  color: var(--ink);
  text-decoration: none;
}
.map-fallback::before {
  content: "";
  width: min(38vw, 34rem);
  aspect-ratio: 1;
  position: absolute;
  left: -7%;
  top: 50%;
  border: 1px solid rgba(23,32,29,.2);
  border-radius: 50%;
  transform: translateY(-50%);
}
.map-city, .map-state { position: relative; font-family: var(--display); font-weight: 600; text-transform: uppercase; }
.map-city { font-size: clamp(4.5rem, 9vw, 9rem); line-height: .78; letter-spacing: -.03em; }
.map-state { margin-top: .8rem; color: var(--coral-dark); font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: .08em; }
.map-address { max-width: 20ch; margin-top: clamp(3rem, 7vw, 6rem); position: relative; font-size: 1.08rem; }
.map-fallback strong { width: max-content; margin-top: 1.5rem; position: relative; border-bottom: 2px solid var(--ink); }
.map-fallback:hover strong { color: var(--coral-dark); border-color: var(--coral-dark); }
.visit-info { padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6rem); align-self: center; }
.visit-info h2 { margin-bottom: 1rem; font-size: clamp(4rem, 7vw, 7rem); }
.visit-info > p:first-of-type { max-width: 38ch; color: #d3dad6; }
.visit-phone { display: block; width: max-content; margin: 2.25rem 0 .4rem; color: var(--white); font-family: var(--display); font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 600; text-underline-offset: .45rem; }
.visit-email { color: var(--brass); }
.visit-info address { margin-top: 2rem; font-style: normal; }
.hours { color: #cbd2ce; }
.visit-actions { margin-top: 2.2rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.button-outline { border-color: #86928c; color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--graphite); }

footer { padding: 2rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: #101312; color: #adb5b1; }
.wordmark-footer { color: var(--white); }
footer p { margin: 0; font-size: .86rem; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; gap: 1rem; }
  .site-header nav { display: none; }
  .hero-plate { margin-top: 0; width: 100%; grid-template-columns: 1fr; }
  .rating { grid-column: 1; }
  .premise-grid, .craft-grid, .detail-strip, .review-pair, .visit { grid-template-columns: 1fr; }
  .premise h2, .craft-copy h2 { max-width: 11ch; }
  .bench-photo img { aspect-ratio: 4 / 3; }
  .detail-strip img { min-height: 360px; }
  .detail-copy { order: 2; }
  .detail-strip img { order: 1; }
  .craft-path { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; border-top: 0; }
  .craft-path li { padding-top: 1.2rem; border-top: 2px solid var(--coral); }
  .craft-path li::before { top: -7px; }
  .map-fallback { min-height: 430px; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .site-header { min-height: 64px; padding-inline: 1rem; }
  .wordmark { gap: .28rem; }
  .wordmark strong { font-size: 1.3rem; }
  .wordmark span { font-size: .78rem; }
  .phone-lockup strong { font-size: 1.05rem; }
  .phone-lockup span { font-size: .58rem; }
  #hero-img { min-height: 0; height: 48vw; max-height: none; object-fit: cover; }
  .hero-plate { padding: 1.75rem 1.25rem 2rem; border-top-width: 4px; gap: 1.2rem; }
  .hero-plate h1 { font-size: clamp(3.35rem, 16vw, 4.4rem); }
  .hero-plate p { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button, .text-link { width: 100%; text-align: center; }
  .section-pad { padding-block: 4.6rem; }
  .section-inner { padding-inline: 1.25rem; }
  .premise-grid { gap: 2rem; }
  .premise h2, .craft-copy h2, .mounts h2, .reviews h2, .path h2, .visit-info h2 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .premise h2 { max-width: 8ch; }
  .craft-grid { gap: 2.6rem; }
  .bench-photo img { aspect-ratio: 1 / 1; }
  .ledger div { grid-template-columns: 1fr; gap: .25rem; }
  .detail-strip { margin-top: 4.5rem; }
  .detail-strip img { min-height: 0; aspect-ratio: 1 / 1; }
  .detail-copy { padding: 2.5rem 1.25rem 3rem; }
  .mount-index article { grid-template-columns: 2rem 1fr; gap: .5rem 1rem; }
  .mount-index p { grid-column: 2; }
  .review-pair { gap: 3rem; }
  .review-pair p { font-size: 2.05rem; }
  .review-close { margin-top: 3.5rem; }
  .craft-path { grid-template-columns: 1fr; gap: 2rem; }
  .craft-path strong { font-size: 1.65rem; }
  .craft-path span { font-size: 1rem; }
  .map-fallback { min-height: 330px; padding: 3rem 1.25rem; }
  .map-fallback::before { width: 18rem; left: -24%; }
  .map-city { font-size: 4.5rem; }
  .map-state { font-size: 2.25rem; }
  .map-address { margin-top: 2.5rem; }
  .visit-info { padding: 4rem 1.25rem 4.5rem; }
  .visit-phone { font-size: 2.4rem; }
  .visit-actions { flex-direction: column; }
  footer { align-items: flex-start; flex-direction: column; padding: 2.2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
