/* Page-level styles for interior pages */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  padding: 180px 48px 80px;
  background: var(--ink); color: var(--cream);
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,20,20,0.4), rgba(13,20,20,0.85));
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.page-hero-content .eyebrow { color: var(--copper-light); }
.page-hero-content .eyebrow::before { background: var(--copper-light); }
.page-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 14ch;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.page-hero-content h1 em {
  font-style: italic; color: var(--copper-light);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.page-hero-content .sub {
  margin-top: 32px;
  max-width: 520px;
  font-size: 17px; line-height: 1.7;
  opacity: 0.85; font-weight: 300;
}
.page-hero-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 48px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.7;
}
/* Two col content block */
.two-col {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 120px;
  align-items: start;
}
.two-col .sticky-label {
  position: sticky; top: 120px;
}
.two-col h2 {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.two-col h2 em {
  font-style: italic; color: var(--copper);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.two-col p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 24px;
  font-weight: 300; max-width: 640px;
}
/* Map frame full-width wrapper */
.map-frame {
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  min-height: 400px;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col .sticky-label { position: relative; top: auto; }
  .page-hero { padding: 120px 24px 60px; min-height: 70vh; }
  .page-hero-content h1 { font-size: clamp(40px, 11vw, 80px); }
  .page-hero-meta { padding: 16px 24px; flex-direction: column; gap: 6px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 100px 20px 52px; }
  .page-hero-content h1 { font-size: clamp(34px, 12vw, 60px); }
  .page-hero-content .sub { font-size: 15px; }
}
