@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --navy: #0F172A;
  --navy-mid: #1a2340;
  --gold: #b8955a;
  --gold-text: #6b4f1e;
  --gold-l: #e8d4b0;
  --cream: #EDE7DC;
  --cream-soft: #F5F5F5;
  --text: #1a1a1a;
  --muted: #555555;
  --border: rgba(15,23,42,0.15);
  --border-strong: rgba(15,23,42,0.28);
  --radius: 10px;
  --radius-sm: 7px;
}

/* ── RESET ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  max-width: 1300px;
  margin: 0 auto;
}

img {
  display: block;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(12px);
  z-index: 200;
  gap: 1rem;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  font-size: 13px;
  background: var(--navy);
  color: #fff;
  padding: .6rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
  transition: all .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2.2rem 1.5rem;
  transform: translateY(-120%);
  transition: transform .3s ease;
  z-index: 150;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  cursor: pointer;
  transition: opacity .2s;
}

.mobile-menu a:hover {
  opacity: .6;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 650px;
  position: relative; 
}  

.hero-text {
  background: var(--navy);
  padding: 4.5rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-l);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-p {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background .2s;
  box-shadow: 0 2px 12px rgba(184,149,90,.35);
}

.btn-p:hover {
  background: #a07840;
}

.btn-g {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.4);
  padding: .85rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-weight: 400;
  transition: all .2s;
}

.btn-g:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

.hero-img {
  position: relative;
  overflow: hidden;
  height: 650px; 
}

.hero-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(.68);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15,23,42,.92) 0%, transparent 100%);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.h-stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.h-stat .l {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ── SHARED ── */
.section {
  padding: 4.5rem 3.5rem;
}

.bg-cream {
  background: var(--cream-soft);
}

.bg-navy {
  background: var(--navy);
}

.sl {
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: .75rem;
  font-weight: 600;
}

.sl-light {
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 500;
}

/* NOTE: .sl-dark is nearly identical to .sl-light — only font-weight differs */
.sl-dark {
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 600;
}

.st {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.st-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.sb {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  font-weight: 300;
}

.sb-light {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  max-width: 520px;
  font-weight: 300;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 3.5rem;
}

/* ── SERVICES (navy bg) ── */
.svc-section {
  background: var(--navy);
  padding: 4.5rem 2.8rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.svc-card {
  background: rgba(255,255,255,.06);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .25s;
}

.svc-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,149,90,.5);
}

.svc-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  margin-top: auto;
  padding-top: 1.2rem;
  opacity: .88;
  transition: opacity .3s;
}

.svc-card:hover .svc-photo {
  opacity: 1;
}

/* MERGED: was defined twice with conflicting properties — second lacked min-height */
.svc-card-navy {
  background: var(--navy);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.svc-card-navy:hover {
  border-color: rgba(184,149,90,.5);
  transform: translateY(-2px);
}

.svc-grid-grey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
  align-items: stretch;
}

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 1rem 0 .6rem;
}

.svc-desc {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  font-weight: 300;
}

.svc-desc-navy {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOCUS AREAS ── */
.focus-section {
  background: var(--cream-soft);
  padding: 4.5rem 3.5rem;
}

.ftabs-container {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 2.2rem;
}

.ftabs {
  display: flex;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.ftab {
  flex: 1;
  padding: 1rem .3rem;
  background: var(--navy);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
  line-height: 1.4;
  transition: all .2s;
  font-weight: 400;
}

.ftab:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.ftab.active {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-bottom-color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.fpanel {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.fpanel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fl {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.fr {
  padding: 2.5rem;
  background: var(--cream-soft);
}

.fnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}

.ftitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .7rem;
  line-height: 1.2;
}

.fintro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.fq {
  border-left: 3px solid var(--gold);
  padding: .8rem 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.frt {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: .9rem;
  font-weight: 700;
}

.ftopics {
  list-style: none;
}

.ftopics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.ftopics li:last-child {
  border-bottom: none;
}

.ftopics li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.fcta {
  margin-top: 1.4rem;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: .7rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background .2s;
}

.fcta:hover {
  background: var(--gold);
}

/* ── BIO ── */
.bio-section {
  background: var(--navy);
  padding: 4.5rem 3.5rem;
}

.bio-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.bio-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.bio-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.bio-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.bio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin-bottom: .25rem;
}

.bio-role {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.bio-p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}

.bio-tag {
  padding: .4rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  background: rgba(255,255,255,.07);
  font-weight: 400;
}

.bio-tags-under {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.5rem;
  align-items: center;
  width: 210px;
}

.bio-tags-under .bio-tag {
  width: 100%;
  text-align: center;
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.09);
  font-weight: 400;
  letter-spacing: .02em;
}

/* ── APPROACH ── */
.approach-section {
  background: var(--navy);
  padding: 4.5rem 3.5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.4rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.step:last-child {
  border-bottom: none;
}

.snum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
  min-width: 26px;
  padding-top: 3px;
  flex-shrink: 0;
}

.stitle {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: .35rem;
}

.sdesc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  font-weight: 300;
}

.pq {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}

.pq-bg {
  position: absolute;
  inset: 0;
  opacity: .12;
}

.pq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pq-body {
  position: relative;
  z-index: 1;
}

.pq-accent {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.pq p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,.92);
  line-height: 1.65;
}

.pq .att {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  font-weight: 500;
}

.pq-img-below {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 1.8rem;
  opacity: .75;
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--navy);
  padding: 4.5rem 3.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2.2rem;
}

.tc {
  background: rgba(255,255,255,.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}

.tc:hover {
  background: rgba(255,255,255,.1);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.tc-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tq {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.1rem;
}

.ta {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: .04em;
  font-weight: 600;
}

.tr {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  line-height: 1.4;
}

/* ── CSR ── */
.csr-section-outer {
  background: var(--navy);
  padding: 4.5rem 3.5rem;
}

.csr-border-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}

.csr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
}

.csr-content {
  padding: 3.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-soft);
}

.csr-img {
  overflow: hidden;
  min-height: 340px;
}

.csr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-orgs {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.6rem;
}

.csr-org {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.csr-oname {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}

.csr-odesc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CLIENTS ── */
.clients-section {
  background: var(--cream-soft);
  padding: 4.5rem 3.5rem;
}

.clients-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.client-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.4rem;
  min-width: 120px;
  background: transparent;
  border-radius: var(--radius-sm);
  transition: opacity .2s, transform .2s;
  text-decoration: none;
  cursor: pointer;
}

/* REMOVED: duplicate .client-name with font styles — was dead code (display:none overrides it) */
.client-name {
  display: none;
}

.client-logo {
  height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.85);
  transition: filter .3s;
}

.client-cell:hover .client-logo {
  filter: grayscale(0%) opacity(1);
}

.client-cell:hover {
  opacity: .85;
  transform: scale(1.04);
}

.client-text-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
  justify-content: center;
}

.client-text-item {
  font-size: 13px;
  color: var(--muted);
  padding: .4rem 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 4rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}

.cta-band-text em {
  font-style: italic;
  color: var(--gold-l);
}

.btn-cta-band {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 1rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background .2s;
  box-shadow: 0 2px 16px rgba(184,149,90,.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-band:hover {
  background: #a07840;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--cream-soft);
  padding: 4.5rem 3.5rem 6.1rem;
}

.cg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro .st {
  color: var(--navy);
}

.cf-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 0;
}

.cf {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.cf input,
.cf textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
  border-radius: var(--radius-sm);
  transition: border .2s, background .2s;
}

.cf input::placeholder,
.cf textarea::placeholder {
  color: rgba(255,255,255,.45);
}

.cf textarea {
  height: 95px;
  resize: none;
}

.cf input:focus,
.cf textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}

.btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  font-weight: 500;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(184,149,90,.3);
}

.btn-submit:hover {
  background: #a07840;
}

/* ── FOOTER ── */
.footer {
  background: #fff;
  padding: 1.5rem 2.8rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.fcopy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── UTILITIES ── */
.anchor {
  display: block;
  height: 1px;
}

.note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
}

/* ── SERVICES (grey bg variant) ── */
.svc-section-grey {
  background: var(--cream-soft);
  padding: 4.5rem 3.5rem;
}

/* ── HONEYPOT / FORM FEEDBACK ── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-success {
  padding: 1rem;
  background: rgba(184,149,90,.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  text-align: center;
  margin-top: .5rem;
}

/* ── PER-LOGO SIZE OVERRIDES ── */
a[title="Honeywell"] .client-logo,
a[title="Novartis"] .client-logo {
  height: auto;
  width: 200px;
  max-width: 200px;
}

a[title="Honeywell"],
a[title="Novartis"] {
  padding: 1.4rem 1rem;
  min-width: 160px;
}

a[title="EA"] .client-logo {
  height: 90px;
  width: auto;
  max-width: 90px;
}

a[title="UNICEF"] .client-logo {
  height: 76px;
  width: auto;
  max-width: 76px;
}

a[title="Rémy Cointreau"] .client-logo {
  height: 72px;
  width: auto;
  max-width: 190px;
}

a[title="Edwards Lifesciences"] .client-logo {
  height: 80px;
  width: auto;
  max-width: 80px;
}

/* ── PHOTO POSITION OVERRIDES ── */
.svc-photo--fac {
  object-position: center 55%;
}

.svc-photo--coaching {
  height: 220px;
  object-position: center 30%;
}


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* ── DESKTOP: absolute panel positioning (1141px+) ── */
@media (min-width: 1141px) {
  .ftabs-container {
    flex-direction: row;
    background: var(--navy);
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 60px;
    padding-bottom: 0;
    margin-bottom: 500px; /* Adjust to match your tallest panel height */
  }

  .ftab-item {
    flex: 1;
    display: flex;
  }

  .ftab {
    width: 100%;
    padding: 1.2rem .5rem;
    background: var(--navy);
    color: rgba(255,255,255,.5);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .2s;
  }

  .ftab.active {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-bottom-color: var(--gold);
  }

  .fpanel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 10;
  }

  .fpanel.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── TABLET: accordion mode (max 1140px) ── */
@media (max-width: 1140px) {
  body {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    margin-left: auto;
  }

  .ftabs-container {
    background: var(--navy);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .ftab {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    background: var(--navy);
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
  }

  .ftab-number {
    margin-left: 15px;
    opacity: 0.7;
    font-weight: 500;
  }

  .ftab::after {
    content: '+';
    color: var(--gold);
    margin-right: 15px;
    font-size: 20px;
  }

  .ftab.active::after {
    content: '−';
  }

  .fpanel {
    display: none;
    background: #fff;
  }

  .fpanel.active {
    display: block !important;
  }

  .fl,
  .fr {
    border: none !important;
    width: 100% !important;
  }
}

/* ── MOBILE: 940px ── */
@media (max-width: 940px) {
  .nav {
    padding: .8rem 1.5rem;
    gap: .5rem;
  }

  .nav-links {
    gap: .9rem;
  }

  .nav-links a {
    font-size: 10px;
  }

  .nav-cta {
    padding: .5rem .9rem;
    font-size: 10px;
  }
  
  .hero {
	grid-template-rows: auto 650px;
	}
	  
  .hero-img {
    height: 650px;
	position: relative;
  }

  .hero-text {
    padding: 3rem 2rem;
  }

  .hero-title {
    font-size: 38px;
  }

  .svc-grid-grey {
    grid-template-columns: 1fr;
  }

  .bio-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-circle-wrap {
    align-items: center;
    margin: 0 auto;
  }

  .bio-content {
    padding: 2rem;
  }

  .bio-circle img {
    object-position: center 3%;
  }

  .bio-circle {
    width: 190px;
    height: 190px;
  }

  .fpanel.active {
    grid-template-columns: 1fr;
  }

  .fl {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .ftab {
    font-size: 14px;
    padding: .7rem .2rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .csr-grid {
    grid-template-columns: 1fr;
  }

  .csr-img {
    min-height: 220px;
    max-height: 260px;
  }

  .clients-wrap {
    gap: 1rem;
  }

  .cg {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .svc-section-grey,
  .bio-section,
  .approach-section,
  .testi-section,
  .csr-section-outer,
  .clients-section,
  .contact-section,
  .focus-section {
    padding: 3rem 1.5rem;
  }

  .cta-band {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .st,
  .st-light {
    font-size: 28px;
  }

  .divider {
    margin: 0 1.5rem;
  }

  .svc-photo--fac {
    object-position: center 60%;
  }
}

/* ── SMALL MOBILE: 600px ── */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .logo-img {
    height: 52px;
  }
  
  .hero {
	display: grid;
	grid-template-columns: 1fr;
	/* Let the text height be auto, but define a fixed height for the image row */
	grid-template-rows: auto 350px; 
	height: auto; 
	}

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    padding: 2.5rem 1.5rem;
  }

  .hero-img {
    max-height: 350px;
	position: relative;
  }

  .hero-stats {
    gap: 1rem;
  }

  .h-stat .n {
    font-size: 30px;
  }

  .h-stat .l {
    font-size: 12px;
  }

  .ftabs {
    flex-wrap: wrap;
  }

  .ftab {
    flex: 0 0 50%;
    font-size: 14px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .clients-wrap {
    gap: .8rem;
  }

  .client-cell {
    padding: .8rem .9rem;
    min-width: 80px;
  }

  .client-logo {
    height: 34px;
    max-width: 100px;
  }

  .cf-box {
    padding: 1.5rem 1.2rem;
  }

  .section,
  .svc-section-grey,
  .bio-section,
  .approach-section,
  .testi-section,
  .csr-section-outer,
  .clients-section,
  .contact-section,
  .focus-section {
    padding: 2.5rem 1.2rem;
  }

  .csr-border-wrap .csr-grid {
    grid-template-columns: 1fr;
  }

  .csr-content {
    padding: 2rem 1.5rem;
  }

  .pq {
    padding: 1.8rem;
  }

  .bio-inner {
    gap: 1.5rem;
  }

  .bio-circle img {
    object-position: center 3%;
  }

  .bio-circle {
    width: 170px;
    height: 170px;
  }

  .how-grid {
    gap: 2rem;
  }

  .cg {
    gap: 2rem;
  }

  .footer {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .svc-photo--fac {
    object-position: center 65%;
  }
}