/* =============================================
   SOLEM INTEGRITY GROUP — WEBSITE STYLESHEET
   Colours: Forest Green #1A3C2B, Gold #C9952A,
            Cream #F9F5ED, Dark #111D17, White #FFFFFF
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1A3C2B;
  --green-mid:  #234D38;
  --green-light:#2E6048;
  --gold:       #C9952A;
  --gold-light: #E4AF4A;
  --gold-pale:  #F5E6C8;
  --cream:      #F9F5ED;
  --dark:       #111D17;
  --grey:       #6B7C73;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(17,29,23,0.12);
  --radius:     10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── PAGE TRANSITIONS (multi-page: each file is its own page) ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
body > *:not(nav):not(footer) {
  animation: fadeIn 0.45s ease;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 4px;
  filter: brightness(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-logo-text span:last-child {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── LANDING PAGE ─── */
#landing {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,149,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(201,149,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.landing-pattern {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 30px,
    rgba(201,149,42,0.18) 30px, rgba(201,149,42,0.18) 32px
  );
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.landing-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 24px;
}

.landing-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(201,149,42,0.5);
  object-fit: contain;
  background: white;
  padding: 12px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,149,42,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(201,149,42,0); }
}

.landing-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.3);
  padding: 6px 20px;
  border-radius: 100px;
}

.landing-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  max-width: 720px;
}

.landing-title span {
  color: var(--gold-light);
}

.landing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  font-weight: 300;
}

.landing-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.pill-icon {
  color: var(--gold-light);
  font-size: 14px;
}

.landing-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,149,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.landing-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.landing-scroll svg {
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION SHARED STYLES ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-body {
  font-size: 1rem;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.75;
}

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px 0;
}

/* ─── HOME PAGE ─── */
.home-hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--cream) 60%, rgba(201,149,42,0.06) 100%);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-hero-visual {
  position: relative;
}

.home-hero-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.home-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,43,0.15) 0%, transparent 60%);
}

.home-hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.home-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.home-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.home-badge-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding: 28px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-image: url('assets/port_aerial.jpg');
  background-size: cover;
  background-position: center 30%;
  isolation: isolate;
}

.home-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,43,0.93) 0%, rgba(17,29,23,0.88) 100%);
  z-index: 0;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(26,60,43,0.07);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Visual strip — image showcase on Home */
.visual-strip {
  padding: 0 0 80px;
  background: var(--white);
}

.visual-strip-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  height: 360px;
}

.visual-strip-grid > .vs-card {
  height: 100%;
}

.vs-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 0;
}

.vs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vs-card:hover img {
  transform: scale(1.06);
}

.vs-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,23,0.75) 0%, transparent 55%);
}

.vs-label {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.vs-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 0;
}

.vs-col .vs-card { flex: 1; min-height: 0; }

/* Why Choose Us Banner */
.why-banner {
  background: var(--green);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.why-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,149,42,0.08);
}

.why-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-banner .section-title { color: var(--white); }
.why-banner .section-body  { color: rgba(255,255,255,0.72); max-width: 100%; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.why-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--dark);
  margin-top: 2px;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 120px 0 72px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.about-hero .section-eyebrow {
  background: rgba(201,149,42,0.15);
  color: var(--gold-light);
}

.about-hero .section-title { color: var(--white); }

.about-hero .section-body {
  color: rgba(255,255,255,0.75);
  margin: 0 auto;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 100px;
}

.about-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 36px 28px;
}

.about-img-frame img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-block {}

.about-block h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 12px;
}

.about-block p {
  color: var(--grey);
  font-size: 0.96rem;
  line-height: 1.8;
}

.values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip {
  background: var(--gold-pale);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid rgba(201,149,42,0.25);
}

/* Leadership — bigger photo cards */
.leadership-section {
  padding: 72px 0;
  background: var(--cream);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 900px;
}

.leader-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17,29,23,0.18);
}

.leader-photo-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  background: var(--green);
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.leader-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,23,0.55) 0%, transparent 45%);
}

.leader-card-body {
  padding: 24px 26px 28px;
}

.leader-card h4 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 4px;
}

.leader-card .leader-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leader-card .leader-bio {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ─── WHAT WE DO PAGE ─── */
.wwd-hero {
  padding: 120px 0 72px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wwd-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.wwd-hero .section-title { color: var(--white); }
.wwd-hero .section-body  { color: rgba(255,255,255,0.75); margin: 0 auto; }
.wwd-hero .section-eyebrow {
  background: rgba(201,149,42,0.15);
  color: var(--gold-light);
}

.wwd-services {
  padding: 80px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26,60,43,0.06);
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 26px 24px;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* Portfolio CTA */
.portfolio-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 72px 0;
  text-align: center;
}

.portfolio-cta .section-title { color: var(--white); }
.portfolio-cta p { color: rgba(255,255,255,0.72); margin: 0 auto 32px; max-width: 500px; }

/* ─── PARTNERS PAGE ─── */
.partners-hero {
  padding: 120px 0 72px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.partners-hero .section-title { color: var(--white); }
.partners-hero .section-body  { color: rgba(255,255,255,0.75); margin: 0 auto; }
.partners-hero .section-eyebrow {
  background: rgba(201,149,42,0.15);
  color: var(--gold-light);
}

.partners-section {
  padding: 80px 0;
  background: var(--cream);
}

/* Tabs */
.partner-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}

.partner-tab-btn {
  background: var(--white);
  border: 1.5px solid rgba(26,60,43,0.12);
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.partner-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.partner-tab-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(26,60,43,0.25);
}

.partner-panels { position: relative; }

.partner-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.partner-panel.active { display: block; }

.partner-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid rgba(26,60,43,0.06);
}

.partner-logo-section {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
}

.partner-logo-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,149,42,0.08);
}

.partner-logo-box {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
  min-height: 140px;
}

.partner-logo-box img {
  max-width: 85%;
  max-height: 150px;
  object-fit: contain;
}

.partner-logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.partner-profile-section {
  padding: 44px 44px 44px 40px;
}

.partner-name {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 6px;
}

.partner-sector {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.partner-desc {
  color: var(--grey);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.partner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(26,60,43,0.08);
}

.partner-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.partner-meta-item strong {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-meta-item span {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding: 120px 0 72px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.contact-hero .section-title { color: var(--white); }
.contact-hero .section-body  { color: rgba(255,255,255,0.75); margin: 0 auto; }
.contact-hero .section-eyebrow {
  background: rgba(201,149,42,0.15);
  color: var(--gold-light);
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--green);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-item-text strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contact-motto {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(26,60,43,0.07);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,60,43,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}

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

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,60,43,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(26,60,43,0.06);
  border-radius: 10px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 600;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 56px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {}

.footer-brand img {
  height: 48px;
  width: auto;
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-line svg { color: var(--gold); min-width: 16px; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── PATTERN STRIPE ─── */
.stripe-bar {
  height: 12px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--green) 0px, var(--green) 8px,
    var(--gold) 8px, var(--gold) 16px
  );
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .home-hero-inner,
  .about-grid,
  .contact-grid,
  .why-banner-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid   { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
  .home-stats     { grid-template-columns: repeat(3, 1fr); }
  .about-sticky   { position: static; }
  .contact-info-card { position: static; }
  .visual-strip-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .visual-strip-grid > .vs-card { height: 300px; }
  .vs-col { height: 300px; }
  .partner-card { grid-template-columns: 1fr; }
  .partner-logo-section { padding: 36px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green);
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .hamburger  { display: flex; }
  .values-grid   { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .landing-pills  { flex-direction: column; align-items: center; }
  .home-badge     { display: none; }
  .visual-strip-grid { grid-template-columns: 1fr; }
  .visual-strip-grid > .vs-card { height: 220px; }
  .vs-col { flex-direction: row; height: 180px; }
  .partner-tabs { gap: 8px; }
  .partner-tab-btn { padding: 10px 18px; font-size: 13px; }
  .partner-profile-section { padding: 30px 24px; }
}
