﻿/* =========================================================
   Home page specific styles
   ========================================================= */

body.home-page #hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.home-page #hero > .container {
  width: 100%;
  display: flex;
  justify-content: center;
}

body.home-page .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.65) 50%, rgba(13,13,13,0.82) 100%), url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover no-repeat;
}

body.home-page .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,150,62,0.06) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(184,150,62,0.06) 80px);
}

body.home-page .hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: min(960px, 100%);
  text-align: center;
}

body.home-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(184,150,62,0.5);
  padding: 8px 18px;
  margin: 0 auto 28px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Ensure homepage hero heading stays readable on dark image. */
body.home-page .hero h1,
body.home-page .hero-content h1 {
  color: var(--white);
  margin-bottom: 10px;
}

body.home-page .hero h1 em,
body.home-page .hero-content h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

body.home-page .hero-sub {
  color: rgba(255,255,255,0.72) !important;
  max-width: 540px;
  margin: 20px auto 32px;
}

body.home-page .hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(184,150,62,0.45);
  background: rgba(13,13,13,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

body.home-page .hero-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 14px 18px 14px 22px;
  border-right: 1px solid rgba(184,150,62,0.35);
}

body.home-page .hero-btns .btn {
  padding: 12px 22px;
  font-size: 0.78rem;
  white-space: nowrap;
}

body.home-page .hero-btns .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

body.home-page .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.home-page .hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,150,62,0.6), transparent);
}

body.home-page .hero-stats {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  background: var(--gold);
  align-items: stretch;
}

body.home-page .hero-stat {
  padding: 18px clamp(20px, 2.5vw, 32px);
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.home-page .hero-stat:last-child {
  border-right: none;
}

body.home-page .hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

body.home-page .hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

body.home-page #trust-strip {
  background: var(--dark);
  padding: 20px 0;
  border-top: 1px solid rgba(184,150,62,0.2);
  border-bottom: 1px solid rgba(184,150,62,0.2);
}

body.home-page .trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}

body.home-page .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
}

body.home-page .trust-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184,150,62,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home-page .trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

body.home-page .trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(184,150,62,0.25);
}

body.home-page #intro {
  background: var(--white);
}

body.home-page .intro-img-wrap {
  position: relative;
}

body.home-page .intro-img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--deep);
}

body.home-page .intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

body.home-page .intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 24px 28px;
  color: var(--white);
  text-align: center;
}

body.home-page .intro-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  display: block;
}

body.home-page #vision-mission {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

body.home-page #vision-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(184,150,62,0.08) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(184,150,62,0.05) 0%, transparent 60%);
}

body.home-page .vm-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

body.home-page .vm-divider-v {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  align-self: stretch;
}

body.home-page .vm-card h3 {
  color: var(--white);
  margin-bottom: 20px;
}

body.home-page .vm-card p {
  color: rgba(255,255,255,0.62);
}

body.home-page .vm-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.home-page .vm-card-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

body.home-page #why-us {
  background: var(--light);
}

body.home-page .why-header {
  text-align: center;
  margin-bottom: 60px;
}

body.home-page .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: rgba(184,150,62,0.15);
  border: 2px solid rgba(184,150,62,0.15);
}

body.home-page .why-card {
  background: var(--white);
  padding: 44px 36px;
}

body.home-page .why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,62,0.15);
  line-height: 1;
  margin-bottom: 10px;
}

body.home-page .why-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

body.home-page .why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* Temporarily hidden on homepage — remove display:none to restore */
body.home-page #leadership {
  display: none;
  background: var(--white);
}

body.home-page .leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

body.home-page .leader-card {
  border: 1px solid rgba(184,150,62,0.2);
}

body.home-page .leader-img {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--deep) 0%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home-page .leader-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,62,0.4);
}

body.home-page .leader-info {
  padding: 24px 28px;
}

body.home-page .leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

body.home-page .leader-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

body.home-page .leader-bio {
  font-size: 0.88rem;
  color: var(--mid);
}

body.home-page #cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

body.home-page #cta-banner .cta-content {
  max-width: 720px;
  margin: 0 auto;
}

body.home-page #cta-banner .cta-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 16px;
}

body.home-page #cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

body.home-page #cta-banner p {
  color: rgba(255,255,255,0.6) !important;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* Keep both CTA buttons aligned even when one has an icon. */
body.home-page .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

body.home-page #cta-banner .cta-btns .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================================
   About page specific styles
   ========================================================= */

body.about-page #overview {
  background: var(--white);
}

body.about-page .overview-text h2 {
  margin-bottom: 20px;
}

body.about-page .overview-text p {
  margin-bottom: 16px;
}

body.about-page .overview-visual {
  background: linear-gradient(135deg, var(--deep) 0%, var(--charcoal) 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

body.about-page .overview-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(184,150,62,0.04) 21px);
}

body.about-page .overview-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

body.about-page .overview-big-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  color: rgba(184,150,62,0.2);
  line-height: 1;
  display: block;
}

body.about-page .credential-list {
  list-style: none;
  margin-top: 30px;
}

body.about-page .credential-list li {
  border-bottom: 1px solid rgba(184,150,62,0.15);
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

body.about-page #core-values {
  background: var(--light);
}

body.about-page .values-header {
  text-align: center;
  margin-bottom: 60px;
}

body.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

body.about-page .value-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid transparent;
}

/* Restore original golden number style in core values cards. */
body.about-page .value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,62,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

body.about-page .value-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

body.about-page .value-card p {
  font-size: 0.88rem;
}

body.about-page #about-leadership {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

body.about-page .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Restore leadership philosophy spacing, icon balance and typography. */
body.about-page .leadership-intro {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-bottom: 60px;
}

body.about-page .leadership-intro h2 {
  color: var(--white);
}

body.about-page .leadership-intro p {
  color: rgba(255,255,255,0.55);
}

body.about-page .philosophy-card {
  border: 1px solid rgba(184,150,62,0.2);
  padding: 36px 32px;
  transition: all 0.3s;
}

body.about-page .philosophy-card:hover {
  border-color: var(--gold);
  background: rgba(184,150,62,0.04);
}

body.about-page .philosophy-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

body.about-page .philosophy-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

body.about-page .philosophy-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

body.about-page .philosophy-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

body.about-page .governance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

body.about-page .governance-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Restore Governance & Credibility right-side badge design. */
body.about-page .gov-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(184,150,62,0.2);
  padding: 24px 28px;
  transition: all 0.3s;
}

body.about-page .gov-badge:hover {
  border-color: var(--gold);
  transform: translateX(8px);
}

body.about-page .gov-badge-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.about-page .gov-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

body.about-page .gov-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}

body.about-page .gov-badge-sub {
  font-size: 0.8rem;
  color: var(--mid);
}

body.about-page .regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.about-page .regional-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(184,150,62,0.1);
}

body.about-page #future-vision {
  background: var(--deep);
  padding: var(--section-pad) 0;
  text-align: center;
}

body.about-page #cta-banner {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}

/* Restore the last two About sections to original visual style. */
body.about-page .regional-stat {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

body.about-page .regional-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

body.about-page .regional-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

body.about-page #future-vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(184,150,62,0.1) 0%, transparent 60%);
}

body.about-page .fv-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

body.about-page .fv-content .intro-eyebrow {
  justify-content: center;
}

body.about-page .fv-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

body.about-page .fv-content p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 1.05rem !important;
  margin-bottom: 40px;
}

body.about-page .fv-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 30px;
  text-align: left;
  background: rgba(184,150,62,0.06);
  margin: 40px 0;
}

body.about-page .fv-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  font-style: italic;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.6;
}

body.about-page #cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

body.about-page #cta-banner p {
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 28px;
}

/* =========================================================
   Services page specific styles
   ========================================================= */

body.services-page #services-intro {
  background: var(--white);
}

body.services-page .services-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.services-page #service-detail {
  background: var(--light);
}

body.services-page .service-num-header {
  text-align: center;
  margin-bottom: 70px;
}

body.services-page .services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.services-page .service-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: stretch;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(184,150,62,0.1);
}

body.services-page .service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(184,150,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-pale) 0%, rgba(245,237,214,0.5) 100%);
  border-right: 1px solid rgba(184,150,62,0.12);
  line-height: 1;
  padding: 16px 8px;
}

body.services-page .service-row-content {
  padding: 40px 40px;
}

body.services-page .service-row-content h3 {
  color: var(--dark);
  margin-bottom: 16px;
}

body.services-page .service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.services-page .service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(184,150,62,0.25);
  padding: 5px 12px;
  color: var(--gold);
}

body.services-page .service-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-left: 1px solid rgba(184,150,62,0.1);
  min-width: 100px;
}

body.services-page .service-row-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(184,150,62,0.3);
  fill: none;
  stroke-width: 1;
}

body.services-page #process {
  background: var(--dark);
}

body.services-page .process-header {
  text-align: center;
  margin-bottom: 70px;
}

body.services-page .process-header h2 {
  color: var(--white);
}

body.services-page .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

body.services-page .process-step {
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(184,150,62,0.22);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

body.services-page .process-step:hover {
  border-color: rgba(184,150,62,0.45);
  background: rgba(255,255,255,0.06);
}

body.services-page .process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

body.services-page .process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,150,62,0.06);
}

body.services-page .process-step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

body.services-page .process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin: 4px 0 0;
  line-height: 1.25;
}

body.services-page .process-step p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.52) !important;
  margin: 0;
}

body.services-page #approach {
  background: var(--white);
}

body.services-page .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.services-page .approach-visual {
  background: var(--light);
  padding: 50px 40px;
  border: 1px solid rgba(184,150,62,0.15);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

body.services-page .approach-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.services-page .approach-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

body.services-page .approach-stat-bar {
  height: 6px;
  background: rgba(184,150,62,0.12);
  border-radius: 3px;
  overflow: hidden;
}

body.services-page .approach-stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
  transition: width 0.6s ease;
}

body.services-page .approach-stat-text {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
}

body.services-page #cta-banner {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

body.services-page #cta-banner .cta-content {
  max-width: 720px;
  margin: 0 auto;
}

body.services-page #cta-banner h2 {
  color: var(--white);
  margin: 0 auto 16px;
  max-width: 640px;
}

body.services-page #cta-banner p {
  color: rgba(255,255,255,0.88) !important;
  max-width: 520px;
  margin: 0 auto 32px;
}

body.services-page #cta-banner .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

body.services-page #cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}

body.services-page #cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

body.services-page #cta-banner .btn-cta-solid {
  background: var(--white);
  color: var(--gold);
  border: 1.5px solid var(--white);
}

body.services-page #cta-banner .btn-cta-solid:hover {
  background: transparent;
  color: var(--white);
}

/* =========================================================
   Contact page specific styles
   ========================================================= */

body.contact-page #contact-main {
  background: var(--white);
}

body.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
}

body.contact-page .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(184,150,62,0.12);
}

body.contact-page .contact-card:first-of-type {
  border-top: 1px solid rgba(184,150,62,0.12);
}

body.contact-page .contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}
body.contact-page .contact-card-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

body.contact-page .contact-card-content {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
}

body.contact-page .contact-hours {
  margin-top: 36px;
  padding: 28px;
  background: var(--light);
}

body.contact-page .contact-hours-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

body.contact-page .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,150,62,0.1);
  font-size: 0.88rem;
}

body.contact-page .hours-row:last-child {
  border-bottom: none;
}

body.contact-page .contact-form-wrap {
  background: var(--dark);
  padding: clamp(36px, 5vw, 56px);
  position: relative;
}

body.contact-page .contact-form-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

body.contact-page .form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

body.contact-page .form-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

body.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.contact-page .form-group {
  margin-bottom: 20px;
}

body.contact-page .form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
}

body.contact-page .form-input,
body.contact-page .form-select,
body.contact-page .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  color: var(--white);
}


body.contact-page .form-input::placeholder,
body.contact-page .form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

body.contact-page .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

body.contact-page .form-consent label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

body.contact-page .form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body.contact-page .form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

body.contact-page .form-submit.is-loading {
  pointer-events: none;
}

/* Honeypot: visually hidden but not display:none (some bots skip display:none). */
body.contact-page .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.contact-page .form-message {
  font-size: 0.82rem;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 4px;
}

body.contact-page .form-message--error {
  color: #fecaca;
  background: rgba(192, 57, 43, 0.25);
  border: 1px solid rgba(192, 57, 43, 0.5);
}
.form-submit svg {
    width: 16px;
    height: 16px;
}
body.contact-page .form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

body.contact-page .form-success.visible {
  display: block;
}

body.contact-page #map-section {
  background: var(--dark);
}
.map-header {
    padding: 50px 0 40px;
    text-align: center;

}

body.contact-page .map-embed {
  width: 100%;
  height: 420px;
  filter: grayscale(0.6) brightness(0.7);
  border: none;
}

body.contact-page #inquiry-cta {
  background: var(--gold);
  padding: 80px 0;
}

body.contact-page .inquiry-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
   color: var(--white);
}
.inquiry-text p {
    color: rgba(255, 255, 255, 0.8) !important;
}
.inquiry-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.inquiry-highlight {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
}
.inquiry-highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--white);
}
.inquiry-highlight-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive overrides per page */

@media (max-width: 1024px) {
  body.home-page .hero-actions {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  body.home-page .hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
  }

  body.home-page .hero-btns {
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(184,150,62,0.35);
    padding: 16px 18px;
    justify-content: center;
  }

  body.home-page .hero-stats {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  body.home-page .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 16px 10px;
  }
}

@media (max-width: 768px) {
  body.home-page .vm-grid,
  body.about-page .governance-grid,
  body.about-page .regional-grid,
  body.services-page .services-intro-inner,
  body.services-page .approach-grid,
  body.contact-page .contact-grid,
  body.contact-page .form-row {
    grid-template-columns: 1fr;
  }

  body.services-page .service-row {
    grid-template-columns: 64px 1fr;
  }

  body.services-page .service-row-num {
    font-size: 1.4rem;
    padding: 12px 6px;
  }

  body.services-page .service-row-icon {
    display: none;
  }

}

@media (max-width: 480px) {
  body.about-page .regional-stat-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .process-steps {
    grid-template-columns: 1fr;
  }

  body.services-page .service-row-content {
    padding: 24px 20px;
  }

  body.contact-page .inquiry-action {
    flex-direction: column;
  }
}
