/* ── ROOT VARIABLES ── */
:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --saffron: #C4622D;
  --saffron-light: #E07840;
  --gold: #C9963A;
  --gold-light: #D4A843;
  --forest: #1C3A2F;
  --forest-light: #2A5040;
  --ink: #1A1510;
  --muted: #6B5E4E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── LANG BAR ── */
.lang-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--forest);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.4s ease;
}

.lang-bar.hidden {
  transform: translateY(-100%);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 2px 6px;
  transition: color 0.3s;
}

.lang-btn.active {
  color: var(--gold-light);
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: var(--forest);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
  top: 0;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--saffron) !important;
  color: white !important;
  padding: 10px 22px;
  font-size: 12px !important;
  font-weight: 500 !important;
}

/* ── SHARED ── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--saffron);
}

.eyebrow.light {
  color: var(--gold-light);
}

.eyebrow.light::before {
  background: var(--gold-light);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sec-title em {
  font-style: italic;
  color: var(--saffron);
}

.sec-title.light {
  color: white;
}

.sec-title.light em {
  color: var(--gold-light);
}

.btn-primary {
  background: var(--saffron);
  color: white;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--saffron-light);
  transform: translateY(-1px);
}

.about-experiences {
  padding: 58px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #f5f0e8;
  border-top: 1px solid rgba(26, 21, 16, .08);
}

.about-experiences>div {
  max-width: 760px;
}

.about-experiences h2 {
  margin-top: 10px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.08;
}

.about-experiences h2 em {
  color: var(--saffron);
  font-style: italic;
}

.about-experiences p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-experiences .btn-primary {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .about-experiences {
    padding: 48px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── HERO ── */
.page-hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  margin-top: 28px;
}

.ph-left {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 72px 72px;
  position: relative;
  overflow: hidden;
}

.ph-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 150, 58, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.ph-deco::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(201, 150, 58, 0.08);
  border-radius: 50%;
}

.ph-accent {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  margin-bottom: 24px;
}

.ph-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 22px;
}

.ph-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 300;
  color: white;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.ph-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  margin-top: 4px;
}

.ph-sub {
  font-size: 15px;
  color: rgb(255 255 255 / 86%);
  line-height: 2.0;
  max-width: 420px;
  margin-bottom: 44px;
  border-left: 2px solid rgba(201, 150, 58, 0.3);
  padding-left: 20px;
}

.ph-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ph-tag {
  padding: 6px 14px;
  border: 1px solid rgb(255 255 255 / 63%);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(255 255 255);
}

.ph-right {
  position: relative;
  overflow: hidden;
}

.ph-img {
  position: absolute;
  inset: 0;
  background: url("./images/testimonials/swiss-tourist-kerala-backwaters.jpeg") center/cover;
  animation: phPan 22s ease-in-out infinite alternate;
}

@keyframes phPan {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.0) translateX(-16px);
  }
}

.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 21, 16, 0.45) 0%, rgba(26, 21, 16, 0.06) 100%);
}

.ph-stats {
  position: absolute;
  bottom: 44px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 3;
}

.ph-stat {
  background: rgba(26, 21, 16, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
}

.ph-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: white;
  font-weight: 300;
  line-height: 1;
}

.ph-stat-n em {
  font-style: normal;
  color: var(--gold-light);
}

.ph-stat-l {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ph-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--saffron), var(--gold));
  opacity: 0.5;
  z-index: 5;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 0;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
}

.t-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold-light);
}

.t-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
  font-weight: 500;
}

.t-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: white;
  font-weight: 400;
  line-height: 1.25;
}

/* ── WHY ── */
.why {
  background: var(--forest);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
  margin: 24px 0 48px;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar {
  border-top: 1px solid rgba(201, 150, 58, 0.3);
  padding-top: 22px;
}

.p-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.p-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: white;
  font-weight: 400;
  margin-bottom: 6px;
}

.p-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}

.why-right {
  position: relative;
  height: 580px;
}

.why-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 74%;
  background-size: cover;
  background-position: center top;
}

.why-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54%;
  height: 50%;
  border: 4px solid var(--forest);
  background-size: cover;
  background-position: center;
}

.why-stat {
  position: absolute;
  bottom: 108px;
  right: 0;
  background: var(--saffron);
  padding: 22px 26px;
  text-align: center;
}

.why-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: white;
  font-weight: 300;
  line-height: 1;
}

.why-stat-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── TEAM ── */
.team {
  padding: 12px 80px;
  background: var(--cream);
}

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

.team-sub {
  max-width: 340px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.tcard-p {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
}

.tp-photo-wrap {
  order: 1;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 21, 16, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tp-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.tcard-p:hover .tp-photo-wrap img {
  transform: scale(1.04);
}

.tp-header {
  order: 2;
  padding: 28px 32px 0;
}

.tp-body {
  order: 3;
  padding: 0 32px 32px;
}

.tp-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 500;
  margin-bottom: 8px;
}

.tp-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 4px;
}

.tp-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.tp-bar {
  width: 28px;
  height: 1px;
  background: var(--saffron);
  margin-bottom: 16px;
}

.tp-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 10px;
}

.tp-langs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.tp-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-top: 16px;
}

/* ── JAYAM ── */
.jayam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.j-left {
  background: var(--forest);
  padding: 88px 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.j-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}

.j-left::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 150, 58, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.j-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.j-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}

.j-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  color: white;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

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

.j-tamil {
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.06em;
}

.j-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.95;
  margin-bottom: 16px;
}

.j-pledge {
  background: rgba(201, 150, 58, 0.12);
  padding: 20px 22px;
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 3px solid var(--gold);
}

.j-pledge-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.j-pledge-title {
  font-size: 13px;
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
}

.j-pledge-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.j-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 22px;
}

.j-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.j-stat:hover {
  border-bottom-color: var(--gold-light);
}

.j-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.j-stat-l {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.j-contact {
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.j-contact-h {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.j-contact-t {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}

.j-contact-t a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.j-right {
  background: var(--forest-light);
  padding: 88px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.j-right::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 150, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.j-right::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 150, 58, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.j-right-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.j-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.j-photo {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.j-photo.full {
  grid-column: 1 / -1;
}

.j-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.j-quote-box {
  margin-top: 3px;
  background: rgba(0, 0, 0, 0.2);
  padding: 26px 28px;
  border-top: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}

.j-quote-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.j-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-bottom: 8px;
}

.j-quote-src {
  font-size: 11px;
  color: #ffffffd4;
  letter-spacing: 0.06em;
}

/* ── SDG ── */
.sdg {
  padding: 120px 80px;
  background: var(--cream-dark);
}

.sdg-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.sdg-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.sdg-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sdg-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  cursor: default;
}

.sdg-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sdg-card:hover .sdg-card-bg {
  transform: scale(1.05);
}

.sdg-card-ov {
  position: absolute;
  inset: 0;
}

.sdg-content {
  position: relative;
  z-index: 2;
}

.sdg-icon-wrap {
  margin-bottom: 20px;
}

.sdg-icon-wrap img {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 2px;
}

.sdg-goal-l {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.sdg-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  color: white;
  line-height: 1.12;
  margin-bottom: 10px;
}

.sdg-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.sdg-4 .sdg-card-bg {
  background: linear-gradient(135deg, #8B1520, #C5192D);
}

.sdg-4 .sdg-card-ov {
  background: linear-gradient(to top, rgba(197, 25, 45, 0.94) 0%, rgba(197, 25, 45, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.sdg-8 .sdg-card-bg {
  background: linear-gradient(135deg, #6B1030, #A21942);
}

.sdg-8 .sdg-card-ov {
  background: linear-gradient(to top, rgba(162, 25, 66, 0.94) 0%, rgba(162, 25, 66, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.sdg-10 .sdg-card-bg {
  background: linear-gradient(135deg, #8B0A42, #DD1367);
}

.sdg-10 .sdg-card-ov {
  background: linear-gradient(to top, rgba(221, 19, 103, 0.94) 0%, rgba(221, 19, 103, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.sdg-un {
  margin-top: 20px;
  padding: 20px 24px;
  background: white;
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sdg-un-logo {
  width: 60px;
  flex-shrink: 0;
}

.sdg-un-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.sdg-un-text strong {
  color: var(--ink);
}

.sdg-un-disc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
  opacity: 0.7;
}

.sdg-un-disc a {
  color: var(--saffron);
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 5, 2, 0.58), rgba(8, 5, 2, 0.58)), url("https://images.unsplash.com/photo-1561458033-36e5756c3c9a?w=1800&q=85") center/cover;
  animation: bgZoom 22s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from {
    transform: scale(1.0);
  }

  to {
    transform: scale(1.07);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 32px;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.5vw, 56px);
  color: white;
  font-weight: 300;
  line-height: 1.15;
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
}

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

.cta-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.cta-acts {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.cta-tel:hover {
  color: white;
}

/* ── FOOTER BAR ── */
.fbar {
  background: var(--forest-light);
  padding: 18px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.fbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.fbar-link svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.fbar-link:hover {
  color: white;
}

.fbar-div {
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

.fbar-socials {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.3s;
}

.soc:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.soc.wa {
  border-color: rgba(37, 211, 102, 0.35);
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px 80px 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}

.foot-logo span {
  color: var(--gold-light);
}

.foot-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  max-width: 260px;
}

.foot-col-h {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  font-weight: 500;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.foot-links a:hover {
  color: white;
}

.foot-addr {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.7;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.foot-legal {
  display: flex;
  gap: 20px;
}

.foot-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.3s;
}

.foot-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

/* ── MOBILE MENU TOGGLE ── */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open {
  overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  nav,
  nav.scrolled {
    padding: 0 24px;
  }

  .lang-bar,
  .fbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .ph-right {
    height: 50vw;
    min-height: 280px;
  }

  .ph-left {
    padding: 130px 28px 56px;
  }

  .why {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    gap: 48px;
  }

  .why-right {
    height: 420px;
  }

  .why-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .team {
    padding: 80px 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .j-left,
  .j-right {
    padding: 64px 32px;
  }

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

  .sdg {
    padding: 80px 32px;
  }

  .sdg-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .trust-bar {
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    flex: none;
    max-width: 280px;
    max-width: none;
    scroll-snap-align: none;
    padding: 26px 24px;
  }

  .trust-item:first-child {
    padding-left: 24px;
  }

  footer {
    padding: 48px 24px 32px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
  }

  nav,
  nav.scrolled {
    padding: 0 16px !important;
    height: 64px !important;
    background: var(--forest) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18) !important;
  }

  nav {
    top: 28px !important;
  }

  nav.scrolled {
    top: 0 !important;
  }

  .page-hero {
    margin-top: 92px;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .ph-left {
    min-height: 0 !important;
    padding: 42px 20px 44px !important;
    justify-content: flex-start !important;
  }

  .ph-deco {
    top: -170px;
    right: -190px;
    opacity: 0.55;
  }

  .ph-accent {
    width: 56px;
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(to right, var(--gold-light), transparent);
  }

  .ph-eyebrow {
    line-height: 1.55;
    max-width: 300px;
    margin-bottom: 18px;
  }

  .ph-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .ph-sub {
    margin-bottom: 26px;
    line-height: 1.75;
  }

  .ph-right {
    height: 300px !important;
    min-height: 0 !important;
  }

  .ph-img {
    background-position: center center;
  }

  .ph-overlay {
    background: linear-gradient(to top, rgba(26, 21, 16, 0.55) 0%, rgba(26, 21, 16, 0.12) 52%, rgba(26, 21, 16, 0.04) 100%);
  }

  .ph-stats {
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
  }

  .ph-stat {
    padding: 12px 10px;
    border-left: 0;
    border-top: 2px solid var(--gold);
    min-width: 0;
  }

  .ph-stat-n {
    font-size: 27px;
  }

  .ph-stat-l {
    font-size: 8px;
    letter-spacing: 0.12em;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .lang-bar,
  .fbar {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .menu-toggle {
    display: flex !important;
    border-color: rgba(255, 255, 255, 0.26) !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }

  .menu-toggle span {
    background: #fff !important;
  }

  .nav-links {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 120 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: rgba(28, 58, 47, 0.98) !important;
    backdrop-filter: blur(12px);
    padding: 14px 20px 22px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  body.menu-open .nav-links {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold-light) !important;
  }

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

  .nav-cta {
    margin-top: 10px;
    border-bottom: none !important;
    width: auto !important;
    padding: 10px 16px !important;
  }

  .why {
    padding: 60px 20px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    width: 100%;
    max-width: none;
    padding: 22px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .team {
    padding: 60px 20px;
  }

  .tp-photo-wrap {
    height: 300px;
  }

  .j-left,
  .j-right {
    padding: 60px 20px;
  }

  .sdg {
    padding: 60px 20px;
  }

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

  footer {
    padding: 48px 20px 32px;
  }

  .cta-acts {
    flex-direction: column;
    align-items: center;
  }

  .tp-header {
    order: 1;
    padding: 20px 15px 8px;
  }

  .tp-bar {
    display: none;
  }

  .tp-photo-wrap {
    order: 2;
    margin-top: 0;
    height: 340px;
    border-left: none;
    border-right: none;
  }

  .tp-body {
    order: 3;
    padding: 25px 15px 35px;
  }

  .tp-name {
    margin-bottom: 10px;
  }
}