@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root{
  --navy:#1F2435;
  --gold:#D09148;
  --slate:#686B77;
  --line:#C2B6AD;
  --paper:#F0ECEA;

  --max:1200px;
  --radius:18px;
  --shadow: 0 14px 40px rgba(31,36,53,.14);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--navy);
  background:#fff;
  line-height:1.55;
}

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

.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(194,182,173,.35);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:42px;width:auto}
.navlinks{
  display:flex; align-items:center; gap:22px;
  font-weight:600; color:var(--navy);
}
.navlinks a{opacity:.9}
.navlinks a:hover{opacity:1;color:var(--gold)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(31,36,53,.20);
  font-weight:700;
}
.cta:hover{border-color:var(--gold); color:var(--gold)}

/* Mobile nav */
.burger{display:none; background:none; border:0; font-size:28px; padding:6px 8px}
@media (max-width: 860px){
  .navlinks{display:none}
  .burger{display:block}
  .nav-open .navlinks{
    display:flex; flex-direction:column; align-items:flex-start;
    padding:12px 0 16px;
    gap:14px;
  }
}

/* Hero */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: 110%;
  background:
  linear-gradient(180deg, rgba(31,36,53,.55) 0%, rgba(31,36,53,.85) 100%),
  url("/assets/hero.jpg") center/cover no-repeat;
}
.hero-inner{
  position: relative;
  padding: 80px 0 56px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}
.kicker .dot{width:8px;height:8px;border-radius:99px;background:var(--gold)}
.hero h1{
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}

.hero p{
  font-size: 19px;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(255,255,255,.86);
}
.hero-actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
}
.btn.primary{background:var(--gold); color:var(--navy)}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{border:1px solid rgba(255,255,255,.25); color:#fff}
.btn.ghost:hover{border-color:var(--gold); color:var(--gold)}

/* Sections */
.section{padding:64px 0}
.section-title{
  font-size: clamp(26px, 2.2vw, 38px);
  letter-spacing:-.01em;
}
.section-sub{
  margin-top:10px;
  color:var(--slate);
  max-width:80ch;
}

/* Cards */
.grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
@media (max-width: 980px){ .grid{grid-template-columns:1fr 1fr} }
@media (max-width: 640px){ .grid{grid-template-columns:1fr} }

.card{
  background:#fff;
  border:1px solid rgba(194,182,173,.35);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.card h3{font-size:20px}
.card p{margin-top:8px;color:var(--slate)}

.card .meta{
  margin-top:14px;
  display:flex; gap:10px; flex-wrap:wrap;
  color:rgba(104,107,119,.95);
  font-weight:600;
}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(194,182,173,.5);
}

/* News list */
.news-item{display:flex; flex-direction:column; gap:8px}
.news-item a:hover{color:var(--gold)}
.news-date{color:var(--slate); font-weight:600}
.hr{height:1px;background:rgba(194,182,173,.4); margin:18px 0}

/* Contact */
.form{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form .full{grid-column:1/-1}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(194,182,173,.65);
  font: inherit;
}
textarea{min-height:140px; resize:vertical}
small.help{color:var(--slate)}

/* Footer */
.footer{
  padding:28px 0;
  border-top:1px solid rgba(194,182,173,.35);
  color:var(--slate);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

/* =========================
   ABOUT / TEAM PAGES
========================= */

.page-hero{
  padding: 88px 0 56px;
  background:
    linear-gradient(135deg, rgba(31,36,53,.95), rgba(31,36,53,.78)),
    radial-gradient(circle at top right, rgba(208,145,72,.18), transparent 30%);
  color:#fff;
}

.page-hero-about{
  min-height: 420px;
  display:flex;
  align-items:end;
}

.page-hero.slim{
  min-height:auto;
  padding:72px 0 44px;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(255,255,255,.78);
  margin-bottom:14px;
}

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

.page-title{
  font-size: clamp(38px, 5vw, 70px);
  line-height:1.03;
  letter-spacing:-.03em;
  max-width: 12ch;
}

.page-lead{
  margin-top:18px;
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.subnav-section{
  background:#fff;
  border-bottom:1px solid rgba(194,182,173,.35);
}

.subnav{
  display:flex;
  gap:14px;
  padding:18px 0;
  flex-wrap:wrap;
}

.subnav a{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(31,36,53,.12);
  font-weight:700;
  color:var(--navy);
  transition:.2s ease;
}

.subnav a:hover,
.subnav a.active{
  border-color:var(--gold);
  color:var(--gold);
}

.split-intro{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:32px;
  align-items:start;
}

.bigger{
  font-size:18px;
}

.feature-grid{
  margin-top:34px;
}

.feature-card{
  background:#fff;
  border:1px solid rgba(194,182,173,.35);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}

.feature-number{
  display:inline-block;
  color:var(--gold);
  font-size:14px;
  font-weight:800;
  margin-bottom:16px;
  letter-spacing:.1em;
}

.soft-section{
  background:linear-gradient(180deg, #f7f4f2 0%, #f0ecea 100%);
}

.leadership-card{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:34px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(194,182,173,.35);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}

.leadership-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  min-height:420px;
  background:#e9e6e3;
}

.leadership-content h2{
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.1;
}

.leadership-role{
  margin-top:8px;
  color:var(--gold);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:14px;
}

.leadership-content p{
  margin-top:16px;
  color:var(--slate);
  font-size:17px;
}

.leadership-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.ghost-dark{
  border:1px solid rgba(31,36,53,.18);
  color:var(--navy);
}

.ghost-dark:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.quote-block{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  padding:34px 26px;
  border-top:1px solid rgba(194,182,173,.45);
  border-bottom:1px solid rgba(194,182,173,.45);
}

.quote-block p{
  font-size: clamp(22px, 2.6vw, 34px);
  line-height:1.3;
  letter-spacing:-.02em;
  color:var(--navy);
}

.two-col-content{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:34px;
  padding:30px 0;
  border-bottom:1px solid rgba(194,182,173,.30);
}

.two-col-content:last-of-type{
  border-bottom:none;
}

.two-col-content h2{
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.12;
}

.two-col-content p{
  color:var(--slate);
  font-size:17px;
}

.values-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.value-card{
  background:#fff;
  border:1px solid rgba(194,182,173,.35);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.value-card h3{
  margin-bottom:10px;
}

.value-card p{
  color:var(--slate);
}

.team-profile{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:34px;
  align-items:center;
}

.team-photo img{
  width:100%;
  border-radius:24px;
  object-fit:cover;
  min-height:420px;
  background:#e9e6e3;
}

.team-info h2{
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.1;
}

.team-highlight{
  margin:14px 0 10px;
  color:var(--gold);
  font-weight:700;
  font-size:18px;
}

.team-info p{
  color:var(--slate);
  font-size:17px;
  margin-top:14px;
}

.team-note{
  margin-top:34px;
  padding:28px;
  border-radius:24px;
  background:var(--paper);
  border:1px solid rgba(194,182,173,.35);
}

.team-note p{
  margin-top:10px;
  color:var(--slate);
}

@media (max-width: 980px){
  .split-intro,
  .leadership-card,
  .two-col-content,
  .team-profile{
    grid-template-columns:1fr;
  }

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

  .page-title{
    max-width:none;
  }
}

/* PAGE HERO */
.page-hero{
  position: relative;
  padding: 110px 0 72px;
}

.page-hero-dark{
  color: #fff;
  background:
    linear-gradient(180deg, rgba(31,36,53,.78) 0%, rgba(31,36,53,.94) 100%),
    url("/assets/hero.jpg") center/cover no-repeat;
}

.page-hero-inner{
  max-width: 900px;
}

.page-hero h1{
  margin-top: 14px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.page-hero p{
  margin-top: 18px;
  max-width: 760px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
}

/* Shared layout helpers */
.two-col{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px){
  .two-col{
    grid-template-columns: 1fr;
  }
}

.eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.light{
  color: rgba(255,255,255,.78);
}

.no-top{
  margin-top: 0;
}

.section-soft{
  background: linear-gradient(180deg, #fbf9f8 0%, var(--paper) 100%);
}

.section-heading{
  max-width: 820px;
}

/* Capabilities */
.capabilities-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .capabilities-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .capabilities-grid{
    grid-template-columns: 1fr;
  }
}

.capability-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.capability-number{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 18px;
}

.capability-card h3{
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.capability-card p{
  color: var(--slate);
  font-size: 16px;
}

/* Process */
.process-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1100px){
  .process-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .process-grid{
    grid-template-columns: 1fr;
  }
}

.process-step{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 20px;
  padding: 22px;
}

.process-step span{
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(208,145,72,.12);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 16px;
}

.process-step h3{
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p{
  color: var(--slate);
}

/* Value block */
.value-block{
  align-items: stretch;
}

.value-panel{
  display: grid;
  gap: 14px;
}

.value-item{
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.value-item h3{
  font-size: 20px;
  margin-bottom: 8px;
}

.value-item p{
  color: rgba(255,255,255,.82);
}

/* CTA band */
.cta-band{
  background: var(--navy);
  color: #fff;
}

.cta-band-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-band h2{
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  max-width: 740px;
}

/* NEWS HERO */
.news-hero{
  padding: 110px 0 60px;
  background: var(--navy);
  color: #fff;
}

.news-kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}

.news-title{
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 900px;
}

.news-meta{
  margin-top: 16px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

/* BODY */
.news-body{
  padding: 70px 0;
}

.narrow{
  max-width: 780px;
}

.news-body p{
  margin-top: 18px;
  font-size: 18px;
  color: var(--navy);
}

.news-body .lead{
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.news-body h2{
  margin-top: 42px;
  font-size: 26px;
}

/* SOURCE */
.source-block{
  margin-top: 40px;
  font-size: 14px;
  color: var(--slate);
}

.source-block a{
  color: var(--gold);
  font-weight: 600;
}

/* ACTIONS */
.news-actions{
  margin-top: 30px;
}

/* NEWS ARTICLE PAGE */
.news-hero{
  padding: 110px 0 60px;
  background: linear-gradient(180deg, rgba(31,36,53,.92) 0%, rgba(31,36,53,.98) 100%);
  color: #fff;
}

.news-kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}

.news-title{
  margin-top: 14px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 980px;
}

.news-meta{
  margin-top: 16px;
  color: rgba(255,255,255,.68);
  font-weight: 600;
}

.news-body{
  padding: 72px 0;
  background: #fff;
}

.narrow{
  max-width: 820px;
}

.news-body p{
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--navy);
}

.news-body .lead{
  margin-top: 0;
  font-size: 23px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--navy);
}

.news-body h2{
  margin-top: 44px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--navy);
}

.source-block{
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(194,182,173,.35);
  font-size: 14px;
  color: var(--slate);
}

.source-block span{
  margin-right: 6px;
}

.source-block a{
  color: var(--gold);
  font-weight: 700;
}

.news-actions{
  margin-top: 30px;
}

.ghost-dark{
  border: 1px solid rgba(31,36,53,.18);
  color: var(--navy);
  background: transparent;
}

.ghost-dark:hover{
  border-color: var(--gold);
  color: var(--gold);
}

/* NEWS INDEX PAGE */
.page-hero-news{
  background:
    linear-gradient(180deg, rgba(31,36,53,.88) 0%, rgba(31,36,53,.96) 100%);
  color: #fff;
  padding: 110px 0 72px;
}

.page-title{
  margin-top: 10px;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -.03em;
  max-width: 980px;
}

.page-lead{
  margin-top: 18px;
  max-width: 780px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.84);
}

.news-index-section{
  padding-top: 56px;
}

.news-index-grid{
  display: grid;
  grid-template-columns: 1.45fr .95fr;
  gap: 22px;
}

@media (max-width: 980px){
  .news-index-grid{
    grid-template-columns: 1fr;
  }
}

.news-card{
  display: block;
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-card:hover,
.news-side-item:hover,
.insight-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(31,36,53,.16);
}

.news-card.featured h2{
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 780px;
}

.news-card.featured p{
  margin-top: 16px;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
}

.news-card-meta,
.insight-meta{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-card-link{
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  color: var(--navy);
}

.news-side-list{
  display: grid;
  gap: 18px;
}

.news-side-item{
  display: block;
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-side-item h3{
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
}

.news-side-item p{
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.65;
}

.insights-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .insights-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .insights-grid{
    grid-template-columns: 1fr;
  }
}

.insight-card{
  display: block;
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.insight-card h3{
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.18;
  color: var(--navy);
}

.insight-card p{
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.65;
}

/* CONTACT PAGE */
.page-hero-contact{
  background:
    linear-gradient(180deg, rgba(31,36,53,.88) 0%, rgba(31,36,53,.96) 100%);
  color: #fff;
  padding: 110px 0 72px;
}

.contact-layout{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
}

.contact-info-grid{
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-info-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-info-card h3{
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-info-card p,
.contact-info-card a{
  color: var(--slate);
  line-height: 1.65;
}

.contact-info-card a:hover{
  color: var(--gold);
}

.contact-form-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form-card h2{
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.1;
  color: var(--navy);
}

.contact-form{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px){
  .contact-form{
    grid-template-columns: 1fr;
  }
}

.form-row{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row-full{
  grid-column: 1 / -1;
}

.form-row label{
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(194,182,173,.65);
  background: #fff;
  color: var(--navy);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(208,145,72,.12);
}

.contact-form textarea{
  min-height: 150px;
  resize: vertical;
}

.contact-note{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}

.contact-cta{
  align-items: center;
}

.what-we-do-highlight{
  background: linear-gradient(180deg, #ffffff 0%, #f7f4f2 100%);
}

.service-steps{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 980px){
  .service-steps{
    grid-template-columns: 1fr;
  }
}

.service-step-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-step-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(31,36,53,.16);
}

.service-step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(208,145,72,.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.service-step-card h3{
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--navy);
}

.service-step-card p{
  margin-top: 14px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

/* WHAT WE DO - COMMERCIAL VERSION */
.solutions-hero{
  padding: 118px 0 78px;
  background:
    linear-gradient(180deg, rgba(31,36,53,.82) 0%, rgba(31,36,53,.95) 100%),
    url("/assets/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.solutions-hero-inner{
  max-width: 860px;
}

.solutions-hero h1{
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.solutions-hero p{
  margin-top: 18px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.offer-grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .offer-grid{
    grid-template-columns: 1fr;
  }
}

.offer-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.offer-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(208,145,72,.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.offer-card h3{
  font-size: 24px;
  line-height: 1.16;
  color: var(--navy);
}

.offer-card p{
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.7;
}

.benefits-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 760px){
  .benefits-grid{
    grid-template-columns: 1fr;
  }
}

.benefit-panel{
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(194,182,173,.35);
  box-shadow: var(--shadow);
}

.benefit-panel h3{
  font-size: 24px;
  line-height: 1.18;
  color: var(--navy);
}

.benefit-panel p{
  margin-top: 10px;
  color: var(--slate);
  line-height: 1.7;
}

.segment-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .segment-grid{
    grid-template-columns: 1fr;
  }
}

.segment-card{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.segment-card h3{
  font-size: 26px;
  line-height: 1.15;
  color: var(--navy);
}

.segment-card p{
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.7;
}

.segment-list{
  margin-top: 16px;
  padding-left: 18px;
  color: var(--navy);
}

.segment-list li{
  margin-top: 8px;
}

.trust-strip-section{
  padding-top: 0;
}

.trust-strip{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

@media (max-width: 900px){
  .trust-strip{
    grid-template-columns: 1fr;
  }
}

.trust-points{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

@media (max-width: 560px){
  .trust-points{
    grid-template-columns: 1fr;
  }
}

.trust-point{
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.team-grid-clean{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px){
  .team-grid-clean{
    grid-template-columns: 1fr;
  }
}

.team-card-clean{
  background: #fff;
  border: 1px solid rgba(194,182,173,.35);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card-image{
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.team-card-image img{
  width: 110%;               /* zoom in slightly */
  height: 110%;
  object-fit: cover;
  object-position: center 25%;
}
.team-card-body{
  padding: 24px;
}

.team-card-body h3{
  font-size: 30px;
  line-height: 1.08;
  color: var(--navy);
}

.team-card-role{
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.profile-layout{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 980px){
  .profile-layout{
    grid-template-columns: 1fr;
  }
}

.profile-image img{
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  min-height: 460px;
  background: #e9e6e3;
  box-shadow: var(--shadow);
}

.profile-content h2{
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--navy);
}

.profile-content p{
  margin-top: 16px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

.diego-img{
  width: 115%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
}

.eduardo-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.page-hero-sobre{
  background:
    linear-gradient(180deg, rgba(31,36,53,.75) 0%, rgba(31,36,53,.95) 100%),
    url("/assets/solar2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
}

.page-hero-about{
  background:
    linear-gradient(180deg, rgba(31,36,53,.75) 0%, rgba(31,36,53,.95) 100%),
    url("/assets/solar1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
}

.page-hero-contact{
  background:
    linear-gradient(180deg, rgba(31,36,53,.75) 0%, rgba(31,36,53,.95) 100%),
    url("/assets/solar2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
}

.page-hero{
  position: relative;
}

.page-hero .container{
  position: relative;
  z-index: 2;
}

.page-hero-about,
.page-hero-contact{
  background-size: 110%;
}

/* MOBILE HERO IMAGE FIX */
@media (max-width: 640px){

  .page-hero-about,
  .page-hero-contact,
  .page-hero-sobre{
    
    /* Make hero shorter */
    min-height: auto;
    padding: 60px 0 40px;

    /* Better image behavior */
    background-size: cover;
    background-position: center center;
  }

}