:root {
  --ink: #18201c;
  --paper: #f4f1e8;
  --paper-light: #fbfaf6;
  --rail-green: #123e32;
  --rail-green-light: #1c5a48;
  --burgundy: #612a2d;
  --brass: #c59b50;
  --line: rgba(24, 32, 28, 0.18);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 15, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.concept-strip {
  min-height: 34px;
  padding: 7px 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.concept-strip span:first-child {
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--brass);
  border-radius: 3px;
  font-weight: 800;
  font-size: 14px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover {
  border-color: var(--brass);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: var(--paper-light);
  border-radius: 4px;
}

.nav-cta svg,
.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
}

.hero {
  position: relative;
  height: clamp(560px, 78svh, 760px);
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image: url("waiting-room-concept-hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 8, 0.78) 0%, rgba(9, 9, 8, 0.36) 52%, rgba(9, 9, 8, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 86vw);
  margin: 74px 0 0 8vw;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--brass);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.hero-facts svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
}

.image-note {
  position: absolute;
  z-index: 2;
  left: 8vw;
  bottom: 22px;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.section-inner {
  width: min(1160px, 88vw);
  margin: 0 auto;
}

.intro-section {
  padding: 112px 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10vw;
  align-items: end;
}

.intro-section h2,
.visit-heading h2 {
  margin: 0;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
}

.intro-copy {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.72;
}

.intro-copy p {
  margin: 0 0 18px;
}

.features-section {
  padding: 84px 0;
  color: var(--white);
  background: var(--rail-green);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
  position: relative;
  min-height: 300px;
  padding: 14px 38px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.feature-number {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-weight: 700;
}

.feature-item > svg {
  width: 34px;
  height: 34px;
  margin: 64px 0 22px;
  color: var(--brass);
}

.feature-item h3,
.detail-row h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature-item p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.68;
}

.quote-band {
  padding: 88px 0 96px;
  color: var(--white);
  background: var(--burgundy);
}

.quote-layout {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.quote-mark {
  margin: 0;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 0.8;
}

.quote-layout blockquote {
  max-width: 860px;
  margin: 0;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.2;
}

.quote-caption {
  grid-column: 2;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.5;
}

.visit-section {
  padding: 112px 0;
  background: var(--paper-light);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 9vw;
}

.visit-heading p:last-child {
  max-width: 480px;
  margin-top: 26px;
  color: rgba(24, 32, 28, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.visit-details {
  border-top: 1px solid var(--line);
}

.detail-row {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-row > svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--rail-green-light);
}

.detail-row p {
  margin: 0;
  color: rgba(24, 32, 28, 0.68);
  font-size: 16px;
  line-height: 1.68;
}

.text-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rail-green);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 54px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
}

.footer-layout strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.footer-layout p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 5vw;
    width: min(320px, 90vw);
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    color: var(--ink);
    background: var(--paper-light);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
    color: var(--white);
    background: var(--rail-green);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-facts {
    right: 5vw;
    gap: 16px;
  }

  .intro-grid,
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .feature-item {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .concept-strip {
    min-height: 44px;
    padding: 7px 18px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
  }

  .concept-strip span:last-child {
    display: none;
  }

  .site-header {
    top: 44px;
    padding: 0 20px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero {
    height: 78svh;
    min-height: 540px;
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 9, 8, 0.82) 0%, rgba(9, 9, 8, 0.54) 65%, rgba(9, 9, 8, 0.18) 100%);
  }

  .hero-content {
    width: auto;
    margin: 64px 22px 0;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 390px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-facts {
    left: 22px;
    right: auto;
    bottom: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-facts span:nth-child(3),
  .image-note {
    display: none;
  }

  .section-inner {
    width: min(100% - 40px, 1160px);
  }

  .intro-section,
  .visit-section {
    padding: 78px 0;
  }

  .intro-section h2,
  .visit-heading h2 {
    font-size: 40px;
  }

  .intro-copy {
    font-size: 17px;
  }

  .features-section {
    padding: 58px 0;
  }

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

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .feature-item > svg {
    margin: 28px 0 18px;
  }

  .quote-band {
    padding: 68px 0 74px;
  }

  .quote-layout {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
  }

  .quote-mark {
    font-size: 72px;
  }

  .quote-layout blockquote {
    font-size: 30px;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    justify-content: center;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 20px;
  }
}

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

  .button {
    transition: none;
  }
}
