/* ============================================================
   pages.css — Normal Scrolling Inner Pages
   ============================================================ */

/* ── Body override for inner pages ──────────────────────── */
body.inner-page {
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
}

/* ── Button overrides for inner pages (white background) ── */
body.inner-page .btn--outline {
  border-color: rgba(13, 27, 42, 0.4);
  color: var(--navy);
}

body.inner-page .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Inner Page Layout ───────────────────────────────────── */
.inner-main {
  min-height: 100vh;
  padding-top: 6rem;
  /* nav offset */
}

/* ── Inner Page Hero Banner ──────────────────────────────── */
.inner-hero {
  background: var(--navy-mid);
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.inner-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.inner-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-bottom: 2rem;
  font-weight: 500;
}

.inner-hero__breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.inner-hero__breadcrumb a:hover {
  opacity: 0.7;
}

.inner-hero__breadcrumb span {
  opacity: 0.4;
}

.inner-hero__label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.inner-hero__label-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.inner-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.inner-hero__sub {
  font-weight: 300;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

/* ── Inner Sections ──────────────────────────────────────── */
.inner-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.inner-section--narrow {
  max-width: 820px;
}

.inner-section--alt {
  background: var(--off-white);
}

.inner-section+.inner-section--alt,
.inner-section--alt+.inner-section {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

/* ── Section Label ───────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Content Grid ────────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.content-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* ── Text Blocks ─────────────────────────────────────────── */
.text-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.text-block p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(13, 27, 42, 0.7);
  margin-bottom: 1.25rem;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.text-block--dark p {
  color: var(--charcoal);
}

.text-block--dark h2 {
  color: var(--navy);
}

/* ── Pull Quote ──────────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.85);
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0;
  background: rgba(201, 168, 76, 0.06);
}

/* ── Timeline (About page) ───────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 168, 76, 0.1) 100%);
}

.timeline__entry {
  position: relative;
  padding: 0 0 3rem 3rem;
}

.timeline__entry::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline__event {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline__detail {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(13, 27, 42, 0.6);
  font-weight: 300;
}

.timeline__placeholder {
  font-size: 0.82rem;
  color: rgba(13, 27, 42, 0.35);
  font-style: italic;
  border: 1px dashed rgba(13, 27, 42, 0.15);
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

/* ── Pillars / Approach Cards ────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 2.25rem;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: var(--white);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  border-color: var(--border-gold);
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.06);
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar__title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(13, 27, 42, 0.65);
  font-weight: 300;
}

/* ── Values (inner page) ─────────────────────────────────── */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  padding: 2.25rem;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: var(--white);
  align-items: start;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.value:hover {
  border-color: var(--border-gold);
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.06);
}

.value__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.value__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(13, 27, 42, 0.7);
  font-weight: 300;
}

/* ── Management Cards (inner page) ───────────────────────── */
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mgmt-profile {
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: var(--white);
  padding: 2.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.mgmt-profile:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.06);
}

.mgmt-profile__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mgmt-profile__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-style: italic;
}

.mgmt-profile__position {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mgmt-profile__bio {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(13, 27, 42, 0.6);
  font-weight: 300;
  font-style: italic;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info__address {
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(13, 27, 42, 0.6);
  font-weight: 300;
}

.contact-info__address strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 1.25rem 0 0.4rem;
}

.contact-info__address strong:first-child {
  margin-top: 0;
}

.contact-info__placeholder {
  color: rgba(13, 27, 42, 0.3);
  font-style: italic;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.6);
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--off-white);
  border: 1px solid rgba(13, 27, 42, 0.15);
  color: var(--navy);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(13, 27, 42, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(13, 27, 42, 0.45);
  line-height: 1.6;
  font-weight: 300;
}

.form-error {
  font-size: 0.7rem;
  color: #d14949;
  margin-top: 0.2rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: #d14949;
}

/* ── Map ─────────────────────────────────────────────────── */
.map-frame {
  position: relative;


  min-height: 300px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  margin-top: 3rem;
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 27, 42, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--off-white);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border-white);
  padding: 5rem 3rem 2.5rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-white);
  margin-bottom: 2.5rem;
}

.footer__brand {}

.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__brand-type {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer__nav-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__info-item {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  font-weight: 300;
}

.footer__info-item strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  margin-bottom: 0.25rem;
  margin-top: 1rem;
}

.footer__info-item strong:first-child {
  margin-top: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inner-hero {
    padding: 8rem 2rem 4rem;
  }

  .inner-section {
    padding: 4rem 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer {
    padding: 4rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 7rem 1.5rem 3.5rem;
  }

  .inner-section {
    padding: 3rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .inner-hero {
    padding: 6.5rem 1.25rem 3rem;
  }

  .inner-section {
    padding: 2.5rem 1.25rem;
  }
}