.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28);
  transform: scale(1.05);
  transition: transform 6s ease;
}

.page-hero-bg.loaded {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 8 8 / 12%) 0%, rgb(0 0 0 / 0%) 60%, rgb(0 0 0) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: var(--text-muted);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.page-hero-line {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 80px;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  animation: fadeIn 0.8s 0.6s forwards;
}

/* ── Inner Layout ── */
.inner-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.inner-section {
  padding: 100px 60px;
  background: white;
}

.inner-section-alt {
  padding: 100px 60px;
}

.inner-section-gold {
  padding: 80px 60px;
  background: var(--gold);
}

/* ── Two Column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.two-col-2-3 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

/* ── Section heading ── */
.inner-heading {
  margin-bottom: 48px;
}

.inner-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-top: 14px;
}

.inner-heading h2 em {
  font-style: italic;
  color: black;
}

.inner-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 16px;
  font-weight: 300;
}

/* ── Gold Heading (on gold bg) ── */
.gold-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.gold-heading h2 em {
  font-style: italic;
}

.gold-heading p {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.85;
  margin-top: 14px;
}

/* ── Prose ── */
.prose {
  font-size: 1.08rem;
  color: #000000;
  line-height: 1.95;
  font-weight: 300;
}

.prose p {
  margin-bottom: 20px;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: black;
  margin: 36px 0 14px;
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.prose ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Service Feature Cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.feature-card {
  background: var(--dark2);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: all 0.35s;
}

.feature-card:hover {
  background: var(--dark3);
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Numbered Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  opacity: 0.3;
  line-height: 1;
  min-width: 48px;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-weight: 300;
}

/* ── FAQ Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q .faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.35s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-a p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding-bottom: 24px;
  font-weight: 300;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ── Sidebar (service pages) ── */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--dark2);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.sidebar-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.sidebar-links a:hover, .sidebar-links a.active {
  color: var(--gold);
}

.sidebar-links a::after {
  content: '→';
  opacity: 0.5;
}

.sidebar-cta-box {
  background: var(--gold);
  padding: 36px 32px;
  text-align: center;
}

.sidebar-cta-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.sidebar-cta-box p {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 22px;
  line-height: 1.7;
}

.sidebar-cta-box a {
  display: block;
  background: var(--black);
  color: var(--gold);
  padding: 13px 20px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}

.sidebar-cta-box a:hover {
  background: var(--dark2);
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.stats-row .stat-box {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.stats-row .stat-box:last-child {
  border-right: none;
}

.stats-row .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stats-row .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Team Mini Card ── */
.team-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-mini-card {
  background: var(--dark2);
  overflow: hidden;
  transition: transform 0.3s;
}

.team-mini-card:hover {
  transform: translateY(-4px);
}

.team-mini-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter 0.4s;
}

.team-mini-card:hover img {
  filter: grayscale(0%);
}

.team-mini-card .tmc-body {
  padding: 20px 20px;
}

.team-mini-card .tmc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.team-mini-card .tmc-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}

.contact-map {
  width: 100%;
  height: 320px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(0.1);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ci-card {
  background: var(--dark2);
  padding: 24px 22px;
}

.ci-card .ci-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.ci-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.ci-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About page timeline ── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.tl-item {
  position: relative;
  padding-bottom: 48px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tl-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: #000000;
  margin-bottom: 8px;
}

.tl-item p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Careers page ── */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.job-card {
  background: var(--dark2);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  cursor: none;
}

.job-card:hover {
  background: var(--dark3);
  border-left-color: var(--gold);
  transform: translateX(6px);
}

.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
}

.job-meta {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.job-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
}

.job-apply {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  transition: all 0.3s;
}

.job-apply:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Blog/Insights page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--dark2);
  overflow: hidden;
  cursor: none;
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.4s, transform 0.4s;
}

.blog-card:hover .blog-img {
  filter: brightness(0.95);
  transform: scale(1.03);
}

.blog-body {
  padding: 28px 24px;
}

.blog-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin: 10px 0 12px;
  line-height: 1.35;
  transition: color 0.3s;
}

.blog-card:hover .blog-title {
  color: var(--gold-light);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Gold CTA Banner ── */
.cta-banner {
  background: var(--gold);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
}

.btn-dark {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 40px;
  background: var(--black);
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

/* ── Related services strip ── */
.related-strip {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.related-card {
  flex: 1;
  min-width: 180px;
  background: var(--dark2);
  padding: 32px 26px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.related-card:hover {
  background: var(--dark3);
  border-bottom-color: var(--gold);
}

.related-card .rc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.related-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.3s;
}

.related-card:hover h4 {
  color: var(--gold);
}

.related-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .inner-section, .inner-section-alt {
    padding: 80px 32px;
  }

  .two-col, .two-col-3-2, .two-col-2-3 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .stats-row .stat-box:nth-child(2) {
    border-right: none;
  }

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

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

  .page-hero-content {
    padding: 0 32px 50px;
  }

  .page-hero-line {
    left: 32px;
  }

  .cta-banner {
    padding: 60px 32px;
  }
}

@media (max-width: 640px) {
  .feature-grid, .blog-grid, .team-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 400px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}