/* ==========================================================================
   OSSA — static content pages (about, contact, services, join-us, legal…)
   ========================================================================== */

/* Full-bleed page hero (image or video) */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero--video { height: 100vh; }
.page-hero .ph-img, .page-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero .ph-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.page-hero .ph-title {
  position: relative;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  color: var(--c-white);
  margin: 0 var(--gutter) 60px;
}
.page-hero .ph-center {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 0;
  align-self: center;
}
.page-hero .ph-center .ph-title { margin: 0; }
.page-hero .ph-sub { color: var(--c-white-70); }
@media (max-width: 809px) {
  .page-hero .ph-title { font-size: 30px; margin-bottom: 40px; }
}

/* Simple heading block for pages without hero */
.static-head { padding: 140px var(--gutter) 20px; }
.static-head .sh-sub { max-width: 760px; margin-top: 16px; }

/* About */
.about-intro { padding-top: 60px; }
.about-intro p { max-width: 720px; margin-top: 14px; }
.ao-cols { display: flex; gap: 40px; margin-top: 26px; }
.ao-cols p { flex: 1; }
.av-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.av-card { display: flex; flex-direction: column; gap: 14px; }
.av-card img { aspect-ratio: 1.4; object-fit: cover; width: 100%; }
.av-card h5 { color: var(--c-dark); }
.ag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ag-grid img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.ag-grid img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; height: 100%; }
.about-map .map-frame { aspect-ratio: 2.6; border: 1px solid var(--c-border); }
.about-map iframe { width: 100%; height: 100%; border: 0; }
.at-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }

@media (max-width: 1199px) {
  .ao-cols { flex-direction: column; gap: 14px; }
  .av-grid, .at-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 809px) {
  .av-grid, .at-grid, .ag-grid { grid-template-columns: 1fr; }
  .ag-grid img:first-child { grid-column: auto; grid-row: auto; }
}

/* Contact */
.contact-page {
  padding: 140px var(--gutter) 60px;
  display: flex; gap: 60px;
}
.cp-info { flex: 1 1 44%; display: flex; flex-direction: column; gap: 18px; }
.cp-rows { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.cp-row h5 { color: var(--c-dark); margin-bottom: 6px; }
.cp-row a:hover { color: var(--c-orange); }
.cp-map { flex: 1 1 56%; }
.cp-map .map-frame { aspect-ratio: 1.5; border: 1px solid var(--c-border); }
.cp-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 1199px) {
  .contact-page { flex-direction: column; padding-top: 110px; }
}

/* After hours */
.ah-person {
  display: flex; gap: 60px; align-items: center;
  padding: 50px var(--gutter);
}
.ah-person--flip { flex-direction: row-reverse; }
.ah-photo { flex: none; width: 42%; }
.ah-photo img { width: 100%; aspect-ratio: 1.2; object-fit: cover; }
.ah-info { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.ah-info .btn { align-self: flex-start; }
@media (max-width: 1199px) {
  .ah-person, .ah-person--flip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ah-photo { width: 100%; }
}

/* Success page */
.success-page {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 160px var(--gutter) 80px;
}

/* Services */
.svc-section h3 { margin-bottom: 20px; }
.svc-copy { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }

/* Legal */
.legal-page { padding: 140px var(--gutter) 60px; max-width: 900px; }
.legal-page h1 { margin-bottom: 30px; }
.legal-page section { margin-bottom: 26px; }
.legal-page h3 { margin-bottom: 12px; }
.legal-page p { margin-bottom: 8px; }
