﻿/* —— Inner page system —— */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: block;
  overflow: hidden;
  background: #141414;
}
.page-hero--compact {
  min-height: 48vh;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-hero.is-inview .page-hero-media img {
  transform: scale(1);
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.28) 0%,
    transparent 35%,
    transparent 70%,
    rgba(20, 20, 20, 0.2) 100%
  );
  pointer-events: none;
}
/* Visually hidden page title for SEO / a11y when banner has no overlay copy */
.page-hero-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
  .page-split--flip > :first-child {
    order: 2;
  }
  .page-split--flip > :last-child {
    order: 1;
  }
}
.page-split-eyebrow {
  margin: 0 0 0.85rem;
  color: #c69d67;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.page-split-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  font-weight: 500;
  color: #141414;
}
.page-split-copy {
  color: #6b6b6b;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}
.page-split-copy p + p {
  margin-top: 1rem;
}
.page-split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e4de;
}
.page-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-split-media:hover img {
  transform: scale(1.05);
}
.page-split-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(232, 213, 184, 0.45);
  pointer-events: none;
  z-index: 1;
}
.page-callout {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid #c69d67;
  background: #f7f1e8;
  color: #6b6b6b;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
}

.page-band {
  position: relative;
  background: #141414;
  color: #fff;
  overflow: hidden;
}
.page-band-sand {
  background: linear-gradient(180deg, #f7f1e8 0%, #fff 55%, #f7f1e8 100%);
  color: #141414;
}
.page-band-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}
@media (min-width: 1024px) {
  .page-band-inner {
    padding: 6rem 2rem;
  }
}

.page-quote {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.35;
  color: #141414;
  font-weight: 400;
}
.page-quote::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, #a87f4a, #c69d67);
}

.page-hero--folio {
  min-height: 42vh;
}
@media (min-width: 1024px) {
  .page-hero--folio {
    min-height: 48vh;
  }
}

.pf-subnav {
  position: relative;
  z-index: 5;
  background: #141414;
  border-bottom: 1px solid rgba(198, 157, 103, 0.22);
}
.pf-subnav-track {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.pf-subnav-link {
  flex: 0 0 auto;
  padding: 0.95rem 1.05rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.48);
  border-bottom: 2px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.pf-subnav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.pf-subnav-link.is-active {
  color: #c69d67;
  border-bottom-color: #c69d67;
  background: transparent;
}

/* Dense company page layout */
.co-page {
  background: #fff;
}
.co-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}
@media (min-width: 1024px) {
  .co-shell {
    padding: 3.25rem 2rem 4rem;
  }
}
.co-intro {
  display: grid;
  gap: 1.5rem 3rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e8e4de;
}
@media (min-width: 900px) {
  .co-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    align-items: end;
  }
}
.co-eyebrow {
  margin: 0 0 0.55rem;
  color: #c69d67;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.co-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  font-weight: 500;
  color: #141414;
  max-width: 18ch;
}
.co-lead {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}
.co-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e8e4de;
}
.co-meta-item {
  padding: 1rem 1.05rem;
  border-right: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}
.co-meta-item:nth-child(2n) {
  border-right: none;
}
.co-meta-item:nth-child(n + 3) {
  border-bottom: none;
}
.co-meta-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c69d67;
}
.co-meta-value {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  color: #141414;
  line-height: 1.4;
}

.co-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .co-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.75rem;
    align-items: start;
  }
}
.co-copy p {
  margin: 0 0 1rem;
  color: #6b6b6b;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}
.co-copy p:last-child {
  margin-bottom: 0;
}
.co-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid #c69d67;
  background: #f7f1e8;
  color: #6b6b6b;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}
.co-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #e8e4de;
}
.co-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.co-media:hover img {
  transform: scale(1.05);
}
.co-media-frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(232, 213, 184, 0.4);
  pointer-events: none;
}

.co-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e4de;
}
.co-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}
.co-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: #141414;
}

.co-features {
  display: grid;
  gap: 0;
  border-top: 1px solid #e8e4de;
}
@media (min-width: 768px) {
  .co-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.co-feature {
  padding: 1.35rem 1.15rem 1.4rem;
  border-bottom: 1px solid #e8e4de;
  border-right: 1px solid #e8e4de;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .co-feature:nth-child(3n) {
    border-right: none;
  }
  .co-feature {
    border-bottom: none;
  }
}
a.co-feature:hover {
  background: #f7f1e8;
}
.co-feature-num {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c69d67;
}
.co-feature-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #141414;
}
.co-feature-copy {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}

.svc-list {
  display: grid;
  gap: 0.45rem;
}
.svc-item {
  border: 1px solid #e8e4de;
  background: #fff;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.svc-item[open] {
  border-color: rgba(198, 157, 103, 0.55);
  background: #fcfaf7;
}
.svc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #141414;
}
.svc-item summary::-webkit-details-marker {
  display: none;
}
.svc-item summary i {
  color: #c69d67;
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.svc-item[open] summary i {
  transform: rotate(45deg);
}
.svc-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #6b6b6b;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
}

.co-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid #e8e4de;
}
.co-next-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.co-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #a87f4a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}
.co-next a:hover {
  color: #141414;
  gap: 0.8rem;
}

.contact-panel {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
  }
}
.contact-form {
  background: #fff;
  border: 1px solid #e8e4de;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.05);
}
@media (min-width: 640px) {
  .contact-form {
    padding: 2rem;
  }
}
.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e8e4de;
  background: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #141414;
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c69d67;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.contact-detail i {
  color: #c69d67;
  margin-top: 0.2rem;
}
.contact-detail strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-detail p,
.contact-detail a {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  text-decoration: none;
}
.contact-detail a:hover {
  color: #a87f4a;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e8e4de;
  color: #6b6b6b;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.contact-social a:hover {
  color: #141414;
  background: #c69d67;
  border-color: #c69d67;
}

.news-mosaic--triple {
  grid-template-columns: 1fr;
  min-height: auto !important;
}
@media (min-width: 900px) {
  .news-mosaic--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .news-mosaic--triple .news-tile {
    grid-column: auto;
    grid-row: auto;
  }
}
.folio--light .folio-title,
.folio--light .folio-name {
  color: #fff;
}
