* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F3EEE2;
  --cream-dim: #EAE3D3;
  --white: #FFFFFF;
  --black: #16140F;
  --accent: #A6512E;
  --accent-soft: #C97A4A;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: var(--black);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 32px;
  border-right: 2px solid var(--black);
  z-index: 10;
}

.sidebar-logo {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.55;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.sidebar-nav a span {
  font-family: "Fraunces", serif;
  font-size: 12px;
  color: var(--accent-soft);
}

.sidebar-nav a:hover {
  opacity: 0.85;
}

.sidebar-nav a.active {
  opacity: 1;
  color: var(--accent-soft);
}

.sidebar-foot {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.45;
  font-style: italic;
  font-family: "Fraunces", serif;
}

.page-content {
  margin-left: 220px;
}

.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 64px;
  max-width: 1100px;
}

.hero-eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #3A362D;
}

.hero-cta {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 18px 40px;
  border: 2px solid var(--black);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.banner {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--black);
  color: var(--cream);
  padding: 56px 64px;
  text-align: center;
}

.banner-text {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto 20px;
}

.banner-text strong {
  font-weight: 700;
  color: var(--accent-soft);
}

.banner-link {
  display: inline-block;
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.banner-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.site-footer {
  padding: 32px 64px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #6b6656;
}

.plan-hero {
  padding: 72px 64px 40px;
}

.plan-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.back-link {
  margin-top: 24px;
}

.back-link a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-soft);
}

.back-link a:hover {
  color: var(--black);
}

.page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 64px 40px;
}

.page-toc a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-toc a:hover {
  background: var(--black);
  color: var(--cream);
}

.terms-list {
  list-style: none;
  margin: 16px 0 24px;
}

.terms-list li {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 20, 15, 0.15);
}

.terms-list li:last-child {
  border-bottom: none;
}

.term-label {
  flex: 0 0 190px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 500;
}

.term-value {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: #2A2720;
}

.term-value a {
  color: var(--accent);
}

.plan-intro {
  font-size: 19px;
  line-height: 1.6;
  max-width: 640px;
  color: #3A362D;
}

.plan-section {
  display: flex;
  gap: 48px;
  padding: 52px 64px;
  border-top: 2px solid var(--black);
  background: var(--white);
  transition: background 0.2s ease;
}

.plan-section:hover {
  background: #FBFAF6;
}

.plan-section-last {
  border-bottom: 2px solid var(--black);
}

.plan-heading {
  flex: 0 0 260px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.plan-heading h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.plan-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--accent);
  opacity: 0.85;
  line-height: 1;
}

.plan-body {
  flex: 1;
  max-width: 640px;
}

.plan-body h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
  margin-top: 22px;
  color: var(--accent);
}

.plan-body h3:first-child {
  margin-top: 0;
}

.plan-body p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
  color: #2A2720;
}

.plan-list {
  list-style: none;
}

.plan-list li {
  font-size: 16px;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: #2A2720;
}

.plan-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

.people-section {
  display: flex;
  gap: 48px;
  padding: 44px 64px;
  border-top: 2px solid var(--black);
  background: var(--white);
  transition: background 0.2s ease;
}

.people-section:hover {
  background: #FBFAF6;
}

.people-section-last {
  border-bottom: 2px solid var(--black);
}

.people-heading {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.people-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  background: var(--cream);
}

.people-heading h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.people-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 500;
}

.team-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px;
}

.team-section {
  display: flex;
  gap: 48px;
  padding: 36px 64px;
  border-top: 2px solid var(--black);
  background: var(--white);
  transition: background 0.2s ease;
}

.team-section:hover {
  background: #FBFAF6;
}

.team-section-last {
  border-bottom: 2px solid var(--black);
}

.team-heading {
  flex: 0 0 260px;
}

.team-heading .team-role {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
}

.team-heading h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.team-heading h3 a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-soft);
  transition: color 0.2s ease;
}

.team-heading h3 a:hover {
  color: var(--accent);
}

.plan-hero-tight {
  padding-bottom: 8px;
}

.map-section {
  margin: 0 64px 0;
  border: 2px solid var(--black);
  overflow: hidden;
  line-height: 0;
}

.map-section iframe {
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

.image-placeholder {
  border: 2px dashed var(--black);
  background: var(--cream-dim);
  padding: 56px 24px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  color: #6b6656;
  margin: 24px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 8px;
}

.data-table th {
  text-align: left;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  padding: 10px 16px 10px 0;
  border-bottom: 2px solid var(--black);
}

.data-table td {
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid rgba(22, 20, 15, 0.15);
  font-size: 15px;
  color: #2A2720;
}

.data-table .total-row td {
  font-weight: 700;
  font-family: "Fraunces", serif;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.table-note {
  font-size: 12px;
  line-height: 1.5;
  color: #6b6656;
  margin-top: 12px;
}

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.chip-list li {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  border: 2px solid var(--black);
  padding: 7px 16px;
  border-radius: 999px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
  margin: 24px 0;
}

.stat-item {
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.location-section {
  display: flex;
  gap: 48px;
  padding: 36px 64px;
  border-top: 2px solid var(--black);
  background: var(--white);
}

.location-section-last {
  border-bottom: 2px solid var(--black);
}

.location-heading {
  flex: 0 0 260px;
}

.location-heading .team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 500;
}

.address-block {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--black);
}

.hero-cta-small {
  padding: 12px 28px;
  font-size: 12px;
}

.directions-section {
  padding: 12px 64px 56px;
}

.steps-list {
  list-style: none;
  counter-reset: step;
  max-width: 680px;
}

.steps-list li {
  counter-increment: step;
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22, 20, 15, 0.15);
  font-size: 16px;
  line-height: 1.6;
  color: #2A2720;
}

.steps-list li:last-child {
  border-bottom: none;
}

.steps-list li::before {
  content: counter(step);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  flex: 0 0 28px;
}

@media (max-width: 900px) {
  .plan-section,
  .people-section,
  .team-section,
  .location-section {
    flex-direction: column;
    gap: 16px;
  }
  .plan-heading,
  .people-heading,
  .team-heading,
  .location-heading {
    flex: none;
  }
}

@media (max-width: 700px) {
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
  }
  .sidebar-nav {
    flex-direction: row;
    gap: 20px;
  }
  .sidebar-foot {
    display: none;
  }
  .page-content {
    margin-left: 0;
  }
  .hero {
    padding: 0 24px;
    min-height: 70vh;
  }
  .plan-hero {
    padding: 40px 24px 24px;
  }
  .plan-section {
    padding: 32px 24px;
  }
  .people-section,
  .team-section,
  .location-section {
    padding: 28px 24px;
  }
  .map-section {
    margin: 0 24px 0;
  }
  .directions-section {
    padding: 12px 24px 40px;
  }
  .page-toc {
    padding: 0 24px 32px;
  }
  .terms-list li {
    flex-direction: column;
    gap: 4px;
  }
  .term-label {
    flex: none;
  }
  .data-table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .banner {
    padding: 40px 24px;
  }
}
