/* ═══════════════════════════════════════════
   DESIGN TOKENS — Conservative & Premium
═══════════════════════════════════════════ */
:root{
  --green:     #15824B;
  --green-dk:  #0d5c35;
  --green-xdk: #073d23;
  --green-xxd: #042818;
  --green-lt:  #A6C93A;
  --orange:    #F28A2E;
  --orange-dk: #c96d18;
  --blue:      #4F89AB;

  --ink:       #14191A;
  --slate:     #3A4543;
  --muted:     #6B7570;
  --line:      #E2E7E4;
  --line-soft: #ECEFEC;
  --bg-lt:     #F6F8F6;
  --bg-xlt:    #FAFBFA;
  --white:     #FFFFFF;

  --shadow-xs: 0 1px 2px rgba(20,25,26,.04);
  --shadow-sm: 0 1px 3px rgba(20,25,26,.06), 0 4px 12px rgba(20,25,26,.05);
  --shadow-md: 0 2px 6px rgba(20,25,26,.06), 0 12px 28px rgba(20,25,26,.07);
  --shadow-lg: 0 4px 12px rgba(20,25,26,.06), 0 24px 56px rgba(20,25,26,.09);

  --r-xs: 4px;
  --r:    6px;
  --r-md: 10px;
  --r-lg: 14px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.215,.61,.355,1);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--white);
  overflow-x: hidden; line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
svg { display: block; }

/* LAYOUT */
.wrap { width:100%; max-width:var(--maxw); margin:0 auto; padding: 0 var(--pad); }
.section { padding: clamp(72px, 11vw, 130px) 0; }

/* TYPOGRAPHY */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter'; font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before { content:''; display:block; width:32px; height:1px; background: var(--green); flex-shrink:0; }
.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 500; line-height: 1.1; letter-spacing: -.5px;
  color: var(--ink);
}
.display em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--green); }
.body-md { font-size: clamp(14.5px, 1.6vw, 16px); line-height: 1.85; color: var(--muted); }
.body-lg { font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.8; color: var(--slate); }

/* PROGRESS BAR */
#progress-bar { position: fixed; top: 0; left: 0; z-index: 9999; height: 2px; width: 0%; background: var(--green); transition: width .1s linear; }

/* TOPBAR */
.topbar { background: var(--green-xxd); padding: 9px 0; display: none; font-size: 11.5px; letter-spacing: .3px; }
@media(min-width:900px){ .topbar { display: block; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar a, .topbar p, .topbar .tb-item { color: var(--white); transition: color .2s; }
.topbar a:hover { color: rgba(255,255,255,.86); }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.15); }
.tb-item { display: inline-flex; align-items: center; gap: 7px; }
.tb-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: .8; }

/* NAV */
#nav { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--line); transition: box-shadow .3s var(--ease); }
#nav.elevated { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: clamp(76px, 9vh, 96px); gap: 16px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: clamp(58px, 7vw, 78px); width: auto; display: block; }
.logo-fallback { display: none; align-items: center; gap: 9px; }
.logo-fallback svg { width: 38px; height: 38px; }
.logo-fallback .sbr { font-family:'Montserrat'; font-size: 22px; font-weight: 900; color: var(--green); letter-spacing: 1px; line-height: 1; }
.logo-fallback .eng { font-family:'Montserrat'; font-size: 9px; font-weight: 600; color: var(--green-lt); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }

.nav-links { display: none; gap: clamp(20px, 2.8vw, 36px); align-items: center; }
@media(min-width:1024px){ .nav-links { display: flex; } }
.nav-links a { font-family: 'Inter'; font-size: 13px; font-weight: 500; color: var(--slate); transition: color .25s; position: relative; white-space: nowrap; padding: 6px 0; }
.nav-links a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px; background: var(--green); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav { padding: 11px 22px; background: var(--green); color: var(--white); font-family: 'Inter'; font-size: 12.5px; font-weight: 600; letter-spacing: .4px; border-radius: var(--r); transition: background .25s, box-shadow .25s, transform .2s; white-space: nowrap; flex-shrink: 0; display: none; }
@media(min-width:768px){ .btn-nav { display: inline-flex; align-items: center; gap: 8px; } }
.btn-nav:hover { background: var(--green-dk); box-shadow: 0 8px 20px rgba(21,130,75,.25); transform: translateY(-1px); }
.btn-nav svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hamburger { display: flex; flex-direction: column; gap: 4px; padding: 10px; cursor: pointer; flex-shrink: 0; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); transition: background .2s, border-color .2s; width: 42px; height: 42px; justify-content: center; align-items: center; }
@media(min-width:1024px){ .hamburger { display: none; } }
.hamburger:hover { background: var(--bg-lt); border-color: var(--green); }
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .25s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* MOBILE DRAWER */
.drawer-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(7,61,35,.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); background: var(--white); box-shadow: -16px 0 64px rgba(0,0,0,.18); z-index: 999; transform: translateX(100%); transition: transform .45s var(--ease-out); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-drawer.open { transform: none; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); background: var(--bg-xlt); flex-shrink: 0; }
.drawer-header img { height: 52px; width: auto; }
.drawer-close { width: 36px; height: 36px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--slate); transition: all .2s; }
.drawer-close:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.drawer-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.drawer-body { flex: 1; padding: 24px; display: flex; flex-direction: column; }
.drawer-label { font-family:'Inter'; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.drawer-links a { padding: 14px 16px; font-family: 'Inter'; font-size: 15px; font-weight: 500; color: var(--ink); border-radius: var(--r); display: flex; align-items: center; justify-content: space-between; transition: background .2s, color .2s, padding .2s; border: 1px solid transparent; }
.drawer-links a:hover, .drawer-links a.active { background: var(--bg-lt); color: var(--green); padding-left: 22px; border-color: var(--line-soft); }
.drawer-links a svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 1.8; transition: transform .25s, stroke .25s; }
.drawer-links a:hover svg, .drawer-links a.active svg { transform: translateX(4px); stroke: var(--green); }
.drawer-cta { margin-top: auto; padding: 24px 0 0; border-top: 1px solid var(--line); }
.drawer-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--green); color: var(--white); font-family: 'Inter'; font-size: 13px; font-weight: 600; letter-spacing: .3px; border-radius: var(--r); transition: background .2s; }
.drawer-cta a:hover { background: var(--green-dk); }
.drawer-info { margin-top: 20px; padding: 16px; background: var(--bg-xlt); border-radius: var(--r); font-size: 12.5px; color: var(--muted); line-height: 1.7; }
.drawer-info-row { display: flex; align-items: center; gap: 10px; padding: 4px 0; }
.drawer-info-row svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HERO (HOME)
═══════════════════════════════════════════ */
#hero { background: var(--green-xxd); position: relative; overflow: hidden; min-height: clamp(580px, 92vh, 820px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-arch { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 96px 96px; pointer-events: none; }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 100% 0%, rgba(21,130,75,.28), transparent 65%), radial-gradient(ellipse 70% 60% at 0% 100%, rgba(4,40,24,.7), transparent 70%); pointer-events: none; }
.hero-rule { position: absolute; left: var(--pad); top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(166,201,58,.25) 25%, rgba(166,201,58,.25) 75%, transparent); pointer-events: none; }
.hero-mono { position: absolute; right: var(--pad); top: clamp(80px,12vh,120px); font-family: 'Cormorant Garamond', serif; font-size: clamp(80px, 14vw, 200px); font-style: italic; font-weight: 400; color: rgba(255,255,255,.025); letter-spacing: -8px; line-height: 1; user-select: none; pointer-events: none; display: none; }
@media(min-width:900px){ .hero-mono { display: block; } }
.hero-content { position: relative; z-index: 2; padding: clamp(96px,14vh,156px) 0 clamp(48px,7vh,80px); width: 100%; flex: 1; display: flex; align-items: center; }
.hero-inner { width: 100%; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media(min-width:1024px){ .hero-inner { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(166,201,58,.3); font-family: 'Inter'; font-size: 10.5px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green-lt); margin-bottom: 36px; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 7.5vw, 92px); font-weight: 500; line-height: 1.02; letter-spacing: -1.5px; color: var(--white); margin-bottom: 36px; }
.hero-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--green-lt); }
.hero-title .o { font-style: italic; color: var(--orange); font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.hero-desc { font-size: clamp(14.5px, 1.5vw, 16px); line-height: 1.95; color: rgba(255,255,255,.62); max-width: 510px; margin-bottom: 44px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: clamp(13px,2vh,16px) clamp(22px,3vw,30px); background: var(--orange); color: var(--white); font-family: 'Inter'; font-size: 13px; font-weight: 600; letter-spacing: .4px; border-radius: var(--r); transition: background .25s, box-shadow .25s, transform .25s; white-space: nowrap; }
.btn-primary:hover { background: var(--orange-dk); box-shadow: 0 12px 32px rgba(242,138,46,.35); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: clamp(13px,2vh,16px) clamp(22px,3vw,30px); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85); font-family: 'Inter'; font-size: 13px; font-weight: 500; letter-spacing: .4px; border-radius: var(--r); transition: border-color .25s, color .25s, background .25s; white-space: nowrap; }
.btn-ghost:hover { border-color: var(--green-lt); color: var(--green-lt); background: rgba(166,201,58,.04); }

.hero-right { display: none; flex-direction: column; gap: 14px; }
@media(min-width:1024px){ .hero-right { display: flex; } }
.hr-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 28px 32px; backdrop-filter: blur(8px); }
.hr-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hr-stat .n { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; color: var(--white); line-height: 1; display: block; letter-spacing: -1px; }
.hr-stat .n sup { font-size: 24px; color: var(--orange); font-weight: 400; }
.hr-stat .l { font-family: 'Inter'; font-size: 10.5px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 8px; display: block; }
.hr-quote { padding: 24px 28px; background: rgba(255,255,255,.03); border-left: 2px solid var(--green-lt); font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; font-weight: 400; color: rgba(255,255,255,.78); line-height: 1.55; }
.hr-quote-author { margin-top: 14px; font-family: 'Inter'; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); font-style: normal; }

.hero-cert-bar { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.15); }
.hero-cert-inner { padding: 20px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 32px; }
@media(min-width:640px){ .hero-cert-inner { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .hero-cert-inner { grid-template-columns: repeat(5,1fr); } }
.cb-item { display: flex; align-items: center; gap: 12px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.08); }
.cb-item:first-child { border-left: none; padding-left: 0; }
.cb-icon { width: 28px; height: 28px; color: var(--green-lt); flex-shrink: 0; }
.cb-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cb-text strong { display: block; font-family: 'Inter'; font-size: 12px; font-weight: 600; color: var(--white); letter-spacing: .3px; margin-bottom: 1px; }
.cb-text span { font-family: 'Inter'; font-size: 10.5px; color: rgba(255,255,255,.42); letter-spacing: .5px; }

/* ═══════════════════════════════════════════
   PAGE HERO (subpages) — compact
═══════════════════════════════════════════ */
.page-hero {
  background: var(--green-xxd);
  position: relative; overflow: hidden;
  padding: clamp(80px, 14vh, 140px) 0 clamp(56px, 9vw, 88px);
}
.page-hero .hero-arch,
.page-hero .hero-vignette { position: absolute; inset: 0; pointer-events: none; }
.page-hero .hero-vignette { background: radial-gradient(ellipse 80% 60% at 80% 0%, rgba(21,130,75,.25), transparent 65%); }
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-family: 'Inter'; font-size: 12px; letter-spacing: .3px; }
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: var(--green-lt); }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(166,201,58,.3);
  font-family: 'Inter'; font-size: 10.5px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--green-lt);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500; line-height: 1.04; letter-spacing: -1px;
  color: var(--white); max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--green-lt); }
.page-hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85; color: rgba(255,255,255,.6);
  max-width: 620px; margin-top: 24px;
}
.page-hero-meta {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.phm-item { font-family: 'Inter'; font-size: 12px; color: rgba(255,255,255,.5); }
.phm-item strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }

/* ═══════════════════════════════════════════
   INTRO STRIP / About Section
═══════════════════════════════════════════ */
#intro-strip { background: var(--white); padding: clamp(56px, 8vw, 96px) 0; border-bottom: 1px solid var(--line-soft); }
.intro-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media(min-width:900px){ .intro-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.intro-left .eyebrow { margin-bottom: 22px; }
.intro-left .intro-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4.5vw, 44px); font-weight: 500; line-height: 1.15; color: var(--ink); letter-spacing: -.3px; }
.intro-left .intro-h em { font-style: italic; color: var(--green); }
.intro-right { padding-top: clamp(0px,2vw,16px); }
.intro-right p { font-size: clamp(14.5px,1.6vw,17px); line-height: 1.9; color: var(--slate); margin-bottom: 20px; }
.intro-right p:last-child { margin-bottom: 0; }
.intro-signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.intro-sig-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; font-weight: 500; color: var(--ink); }
.intro-sig-role { font-size: 12px; color: var(--muted); letter-spacing: .3px; }

/* SERVICES */
#services { background: var(--bg-xlt); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(48px, 6vw, 72px); flex-wrap: wrap; gap: 24px; }
.btn-outline-green { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border: 1px solid var(--green); color: var(--green); font-family: 'Inter'; font-size: 12.5px; font-weight: 600; letter-spacing: .3px; border-radius: var(--r); transition: background .25s, color .25s; white-space: nowrap; }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-outline-green svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.svc-card { background: var(--white); padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px); position: relative; transition: background .35s; }
.svc-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { background: var(--bg-xlt); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { display: inline-block; padding: 2px 0; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; font-weight: 500; color: rgba(21,130,75,.4); margin-bottom: 28px; letter-spacing: .5px; border-bottom: 1px solid var(--line); padding-right: 14px; }
.svc-icon { width: 48px; height: 48px; color: var(--green); margin-bottom: 24px; transition: color .35s; }
.svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,2.6vw,26px); font-weight: 500; color: var(--ink); margin-bottom: 12px; line-height: 1.2; letter-spacing: -.2px; }
.svc-card p { font-size: 13.5px; line-height: 1.8; color: var(--muted); }
.svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-family: 'Inter'; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green); transition: gap .25s; }
.svc-more svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.svc-card:hover .svc-more { gap: 12px; }

/* ABOUT (home + detail) */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(48px,6vw,88px); align-items: center; }
@media(min-width:900px){ .about-grid { grid-template-columns: 1fr 1fr; } }
.about-visual { position: relative; }
.about-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--green-xxd) 0%, var(--green-dk) 60%, var(--green) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.about-img::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 40px 40px; }
.about-img-icon { width: 100px; height: 100px; color: rgba(255,255,255,.12); position: relative; z-index: 1; }
.about-img-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.about-img-text { position: absolute; bottom: 32px; left: 32px; z-index: 1; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,.4); }
.about-badge { position: absolute; bottom: 28px; right: -24px; background: var(--orange); color: var(--white); padding: 20px 26px; border-radius: var(--r-md); box-shadow: var(--shadow-lg); text-align: center; z-index: 2; }
@media(max-width:899px){ .about-badge { right: 16px; } }
.ab-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 500; line-height: 1; display: block; }
.ab-num sup { font-size: 22px; opacity: .8; }
.ab-lbl { font-family: 'Inter'; font-size: 10px; font-weight: 600; opacity: .9; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; display: block; }
.about-cert { position: absolute; top: 28px; left: -24px; background: var(--white); padding: 18px 22px; border-radius: var(--r-md); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 10px; z-index: 2; min-width: 200px; }
@media(max-width:899px){ .about-cert { left: 16px; } }
.about-cert-title { font-family:'Inter'; font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.about-cert-row { display: flex; align-items: center; gap: 10px; font-family: 'Inter'; font-size: 12px; font-weight: 500; color: var(--ink); }
.about-cert-row::before { content:''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.about-cert-row.g::before { background: var(--green); }
.about-cert-row.o::before { background: var(--orange); }
.about-cert-row.b::before { background: var(--blue); }
.about-text { display: flex; flex-direction: column; gap: clamp(20px,3vw,28px); }
.about-text p { font-size: clamp(14.5px,1.6vw,16px); line-height: 1.9; color: var(--slate); }
.about-feats { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
@media(min-width:520px){ .about-feats { grid-template-columns: 1fr 1fr; } }
.af { background: var(--white); padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; transition: background .25s; }
.af:hover { background: var(--bg-xlt); }
.af-icon { width: 28px; height: 28px; color: var(--green); margin-bottom: 4px; }
.af-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.af strong { display: block; font-family: 'Inter'; font-size: 14px; font-weight: 600; color: var(--ink); }
.af span { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* NUMBERS */
#numbers { background: var(--green-xxd); padding: clamp(56px, 9vw, 96px) 0; position: relative; overflow: hidden; }
#numbers::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 80px 80px; }
.numbers-header { text-align: center; margin-bottom: clamp(40px,5vw,60px); position: relative; z-index: 1; }
.numbers-header .eyebrow { color: var(--green-lt); justify-content: center; }
.numbers-header .eyebrow::before { background: var(--green-lt); }
.numbers-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,40px); font-weight: 500; color: var(--white); line-height: 1.15; }
.numbers-header h2 em { font-style: italic; color: var(--green-lt); }
.numbers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-md); overflow: hidden; position: relative; z-index: 1; }
@media(min-width:640px){ .numbers-grid { grid-template-columns: repeat(4,1fr); } }
.num-cell { background: var(--green-xxd); padding: clamp(36px,6vw,56px) clamp(20px,3vw,32px); text-align: center; }
.num-val { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px,7.5vw,80px); font-weight: 500; color: var(--white); line-height: 1; display: block; letter-spacing: -1px; }
.num-val sup { font-size: .5em; color: var(--green-lt); font-weight: 400; }
.num-lbl { font-family: 'Inter'; font-size: 10.5px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 12px; display: block; }

/* PROJECTS */
#projects { background: var(--bg-lt); }
.projects-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(32px,4vw,48px); }
.fb { padding: 8px 18px; border-radius: 100px; border: 1px solid var(--line); background: var(--white); color: var(--slate); font-family: 'Inter'; font-size: 12px; font-weight: 500; letter-spacing: .3px; cursor: pointer; transition: all .25s; }
.fb:hover, .fb.on { background: var(--green); color: var(--white); border-color: var(--green); }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px){ .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .projects-grid { grid-template-columns: repeat(3,1fr); } .pj-card.featured { grid-column: span 2; } }
.pj-card { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--ink); box-shadow: var(--shadow-sm); transition: box-shadow .35s, transform .35s; }
.pj-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pj-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.pj-card.featured .pj-thumb { aspect-ratio: 16/9; }
.pj-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .7s var(--ease), filter .6s; filter: brightness(.88); }
.pj-card:hover .pj-bg { transform: scale(1.06); filter: brightness(1); }
.pj-bg-icon { width: 80px; height: 80px; color: rgba(255,255,255,.12); }
.pj-bg-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.pb1 { background: linear-gradient(155deg, #062e1c, #0d5c35, #15824B); }
.pb2 { background: linear-gradient(155deg, #102a3a, #1d4763, #2e6688); }
.pb3 { background: linear-gradient(155deg, #3a2200, #6e4310, #9a6418); }
.pb4 { background: linear-gradient(155deg, #2a1638, #4a285c, #6a3e80); }
.pb5 { background: linear-gradient(155deg, #0a2e0a, #1e561e, #348534); }
.pb6 { background: linear-gradient(155deg, #1a3a1a, #2d5a2d, #45824b); }
.pb7 { background: linear-gradient(155deg, #2a2d3a, #44485a, #6a6e80); }
.pb8 { background: linear-gradient(155deg, #1a1a3a, #2a2a5a, #44447a); }
.pb9 { background: linear-gradient(155deg, #3a1a1a, #5a2a2a, #7a4444); }
.pj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(20px,3vw,30px); }
.pj-cat { display: inline-block; margin-bottom: 8px; padding: 3px 10px; background: var(--orange); color: var(--white); font-family: 'Inter'; font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 2px; width: fit-content; }
.pj-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px,2.4vw,22px); font-weight: 500; color: var(--white); margin-bottom: 4px; line-height: 1.25; }
.pj-overlay span { font-family: 'Inter'; font-size: 12px; color: rgba(255,255,255,.6); }

/* PROCESS */
#process { background: var(--white); }
.process-head { text-align: center; max-width: 640px; margin: 0 auto clamp(48px,7vw,80px); }
.process-head .eyebrow { justify-content: center; }
.process-head p { margin-top: 16px; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; }
@media(min-width:640px){ .process-grid { grid-template-columns: repeat(2,1fr); gap: 40px 32px; } }
@media(min-width:900px){ .process-grid { grid-template-columns: repeat(5,1fr); gap: 24px; } }
.process-grid::before { content:''; position: absolute; top: 35px; left: 10%; right: 10%; height: 1px; background: var(--line); display: none; }
@media(min-width:900px){ .process-grid::before { display: block; } }
.proc-step { text-align: center; padding: 0 clamp(8px,1.5vw,16px); position: relative; z-index: 1; }
.proc-bubble { width: 68px; height: 68px; background: var(--white); border: 1.5px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--green); transition: all .35s; box-shadow: 0 0 0 6px var(--white); }
.proc-step:hover .proc-bubble { background: var(--green); color: var(--white); box-shadow: 0 8px 24px rgba(21,130,75,.25), 0 0 0 6px var(--white); }
.proc-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.proc-step p { font-family: 'Inter'; font-size: 12.5px; line-height: 1.75; color: var(--muted); }

/* TESTIMONIALS */
#testimonials { background: var(--bg-xlt); }
.testi-head { text-align: center; max-width: 600px; margin: 0 auto clamp(48px,6vw,72px); }
.testi-head .eyebrow { justify-content: center; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px){ .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }
.tc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(28px,3.5vw,40px); position: relative; overflow: hidden; transition: box-shadow .35s, border-color .35s, transform .35s; }
.tc:hover { box-shadow: var(--shadow-md); border-color: rgba(21,130,75,.18); transform: translateY(-3px); }
.tc-quote-mark { position: absolute; top: 24px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 84px; color: rgba(21,130,75,.07); line-height: 1; font-weight: 500; }
.tc-stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; }
.tc-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; font-weight: 400; line-height: 1.7; color: var(--slate); margin-bottom: 28px; position: relative; z-index: 1; }
.tc-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--white); }
.tc-name { font-family: 'Inter'; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.tc-role { font-family: 'Inter'; font-size: 11.5px; color: var(--muted); margin-top: 2px; letter-spacing: .2px; }

/* CTA STRIP */
#cta-strip { background: var(--green-xdk); padding: clamp(64px,9vw,96px) 0; text-align: center; position: relative; overflow: hidden; }
#cta-strip::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 80px 80px; }
#cta-strip .wrap { position: relative; z-index: 1; }
.cta-eyebrow { color: rgba(255,255,255,.5); justify-content: center; margin-bottom: 22px; }
.cta-eyebrow::before { background: rgba(255,255,255,.4); }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,5vw,52px); font-weight: 500; color: var(--white); line-height: 1.12; margin-bottom: 16px; letter-spacing: -.5px; }
.cta-title em { font-style: italic; color: var(--green-lt); }
.cta-sub { font-size: clamp(14.5px,1.6vw,16px); color: rgba(255,255,255,.55); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 17px 38px; background: var(--orange); color: var(--white); font-family: 'Inter'; font-size: 13px; font-weight: 600; letter-spacing: .4px; border-radius: var(--r); transition: background .25s, box-shadow .25s, transform .25s; }
.btn-cta:hover { background: var(--orange-dk); box-shadow: 0 16px 40px rgba(242,138,46,.35); transform: translateY(-2px); }
.btn-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* CONTACT */
#contact { background: var(--white); }
.contact-head { margin-bottom: clamp(40px,5vw,64px); max-width: 720px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(48px,6vw,80px); }
@media(min-width:900px){ .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; } }
.ci-desc { font-size: clamp(14.5px,1.6vw,16px); line-height: 1.9; color: var(--slate); margin-bottom: 32px; }
.ci-cards { display: flex; flex-direction: column; gap: 10px; }
.ci-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--bg-xlt); border-radius: var(--r); border-left: 2px solid var(--green); transition: transform .25s, box-shadow .25s, background .25s; }
.ci-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); background: var(--white); }
.ci-ico { width: 40px; height: 40px; color: var(--green); flex-shrink: 0; }
.ci-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ci-t strong { display: block; font-family: 'Inter'; font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.ci-t span { font-size: 13.5px; color: var(--ink); line-height: 1.6; }

.form-card { background: var(--bg-xlt); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,5vw,48px); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.4vw,26px); font-weight: 500; color: var(--ink); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media(min-width:520px){ .form-row { grid-template-columns: 1fr 1fr; } }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-family: 'Inter'; font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.fg input, .fg select, .fg textarea { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 13px 16px; color: var(--ink); font-family: 'Inter'; font-size: 14px; outline: none; transition: border-color .25s, box-shadow .25s; resize: none; width: 100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,130,75,.08); }
.fg textarea { height: 120px; }
.btn-form { width: 100%; padding: 16px; background: var(--green); color: var(--white); font-family: 'Inter'; font-size: 13px; font-weight: 600; letter-spacing: .5px; border: none; border-radius: var(--r); cursor: pointer; transition: background .25s, box-shadow .25s, transform .25s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-form:hover { background: var(--green-dk); box-shadow: 0 10px 28px rgba(21,130,75,.25); transform: translateY(-1px); }
.btn-form svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-privacy { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.form-privacy svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 1.6; stroke-linecap: round; flex-shrink: 0; }

/* FOOTER */
footer { background: var(--green-xxd); position: relative; }
footer::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.footer-content { position: relative; z-index: 1; }
.footer-top { padding: clamp(56px,9vw,88px) 0 clamp(40px,6vw,64px); display: grid; grid-template-columns: 1fr; gap: clamp(40px,5vw,56px); }
@media(min-width:640px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .footer-top { grid-template-columns: 2.2fr 1fr 1fr 1.2fr; } }
.ft-logo { margin-bottom: 22px; }
.ft-logo-img { height: 44px; width: auto; background: var(--white); padding: 6px 12px; border-radius: var(--r); }
.ft-logo-fallback { display: none; align-items: center; gap: 9px; background: var(--white); padding: 8px 14px; border-radius: var(--r); width: fit-content; }
.ft-brand p { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.5); }
.ft-socials { display: flex; gap: 8px; margin-top: 24px; }
.ft-soc-btn { width: 38px; height: 38px; border-radius: var(--r); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: background .25s, color .25s, transform .25s; }
.ft-soc-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.ft-soc-btn svg { width: 17px; height: 17px; fill: currentColor; }
.ft-col h4 { font-family: 'Inter'; font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-col ul { display: flex; flex-direction: column; gap: 12px; }
.ft-col ul a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .25s, padding-left .25s; }
.ft-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: clamp(20px,3vw,26px) 0; position: relative; z-index: 1; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.fb-inner p { font-size: 11.5px; color: rgba(255,255,255,.3); }
.ft-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-cert { padding: 4px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 3px; font-family: 'Inter'; font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,.4); }

/* BACK TO TOP */
#btt { position: fixed; bottom: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px); z-index: 500; width: 46px; height: 46px; background: var(--green); color: var(--white); border: none; border-radius: var(--r); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s, background .25s; box-shadow: 0 6px 20px rgba(21,130,75,.35); }
#btt.on { opacity: 1; transform: none; }
#btt:hover { background: var(--green-dk); }
#btt svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.rv-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.rv-r { opacity: 0; transform: translateX(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.rv.in, .rv-l.in, .rv-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.06s} .d2{transition-delay:.12s} .d3{transition-delay:.18s} .d4{transition-delay:.24s} .d5{transition-delay:.30s}

@media(prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════
   NEW PAGE-SPECIFIC STYLES
═══════════════════════════════════════════ */

/* ── Section utilities ── */
.sec-light { background: var(--white); }
.sec-soft  { background: var(--bg-xlt); }
.sec-cream { background: var(--bg-lt); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px,6vw,72px); }
.sec-head .eyebrow { justify-content: center; }
.sec-head p { margin-top: 16px; font-size: clamp(14.5px,1.6vw,16px); line-height: 1.85; color: var(--muted); }
.sec-head.align-left { text-align: left; margin: 0 0 clamp(48px,6vw,72px); max-width: 720px; }
.sec-head.align-left .eyebrow { justify-content: flex-start; }

/* ═══════════════════════════════════════════
   TIMELINE (História da empresa)
═══════════════════════════════════════════ */
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-left: 32px; }
.timeline::before { content:''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.tl-item { position: relative; padding-bottom: clamp(40px,5vw,60px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:''; position: absolute; left: -32px; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--white); border: 2px solid var(--green); }
.tl-item.featured::before { background: var(--orange); border-color: var(--orange); }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: var(--green); line-height: 1; margin-bottom: 8px; }
.tl-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.tl-text { font-size: 14.5px; line-height: 1.8; color: var(--muted); max-width: 620px; }

/* ═══════════════════════════════════════════
   VALUES GRID (Missão Visão Valores)
═══════════════════════════════════════════ */
.mvv-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px){ .mvv-grid { grid-template-columns: repeat(3,1fr); } }
.mvv-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,4vw,44px); position: relative; overflow: hidden; transition: box-shadow .35s, transform .35s, border-color .35s; }
.mvv-card:hover { box-shadow: var(--shadow-md); border-color: rgba(21,130,75,.2); transform: translateY(-3px); }
.mvv-icon { width: 56px; height: 56px; color: var(--green); margin-bottom: 24px; }
.mvv-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.mvv-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 14px; letter-spacing: -.3px; }
.mvv-card p { font-size: 14px; line-height: 1.85; color: var(--muted); }
.mvv-num { position: absolute; top: 24px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 42px; font-style: italic; font-weight: 500; color: rgba(21,130,75,.1); line-height: 1; }

/* ═══════════════════════════════════════════
   TEAM GRID
═══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:520px){ .team-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .team-grid { grid-template-columns: repeat(4,1fr); } }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .35s, transform .35s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--green-dk), var(--green)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-photo::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 28px 28px; }
.team-initial { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-style: italic; font-weight: 500; color: rgba(255,255,255,.55); position: relative; z-index: 1; }
.team-info { padding: 22px 24px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: -.2px; }
.team-role { font-family: 'Inter'; font-size: 11.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.team-bio { font-size: 13px; line-height: 1.7; color: var(--muted); }
.team-socials { display: flex; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.team-socials a { width: 32px; height: 32px; border-radius: var(--r-xs); background: var(--bg-xlt); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.team-socials a:hover { background: var(--green); color: var(--white); }
.team-socials a svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════
   DETAILED SERVICE (servicos.html)
═══════════════════════════════════════════ */
.svc-detail { display: grid; grid-template-columns: 1fr; gap: clamp(40px,5vw,72px); align-items: center; padding: clamp(56px,8vw,96px) 0; border-bottom: 1px solid var(--line-soft); }
@media(min-width:900px){ .svc-detail { grid-template-columns: 1fr 1fr; } .svc-detail.reverse .svc-d-visual { order: 2; } }
.svc-d-visual { position: relative; }
.svc-d-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; background: linear-gradient(140deg, var(--green-xdk), var(--green-dk), var(--green)); display: flex; align-items: center; justify-content: center; position: relative; }
.svc-d-img::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 32px 32px; }
.svc-d-icon { width: 96px; height: 96px; color: rgba(255,255,255,.18); position: relative; z-index: 1; }
.svc-d-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.svc-d-label { position: absolute; top: 24px; left: 24px; z-index: 1; padding: 6px 14px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border-radius: 100px; font-family:'Inter'; font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.svc-d-content .eyebrow { font-size: 10.5px; }
.svc-d-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,42px); font-weight: 500; color: var(--ink); line-height: 1.1; letter-spacing: -.4px; margin-bottom: 20px; }
.svc-d-content h2 em { font-style: italic; color: var(--green); }
.svc-d-content > p { font-size: clamp(14.5px,1.6vw,16px); line-height: 1.9; color: var(--slate); margin-bottom: 20px; }
.svc-d-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; padding: 20px 24px; background: var(--bg-xlt); border-left: 2px solid var(--green); border-radius: var(--r); }
.svc-d-list li { font-size: 13.5px; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; line-height: 1.65; }
.svc-d-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item:hover { border-color: rgba(21,130,75,.2); }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; text-align: left; font-family: 'Inter'; font-size: 15px; font-weight: 600; color: var(--ink); }
.faq-q:hover { color: var(--green); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .3s; }
.faq-icon::before, .faq-icon::after { content:''; position: absolute; top: 50%; left: 50%; background: var(--green); border-radius: 2px; transition: transform .3s; }
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 26px 24px; font-size: 14px; line-height: 1.85; color: var(--muted); border-top: 1px solid var(--line-soft); padding-top: 18px; margin: 0 -26px; padding-left: 26px; padding-right: 26px; }

/* ═══════════════════════════════════════════
   PROCESS DETAILED (metodologia.html)
═══════════════════════════════════════════ */
.proc-detail-grid { display: flex; flex-direction: column; gap: clamp(20px,3vw,28px); max-width: 920px; margin: 0 auto; }
.proc-detail { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px,3vw,40px); padding: clamp(24px,3vw,32px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); transition: box-shadow .35s, border-color .35s; align-items: flex-start; }
.proc-detail:hover { box-shadow: var(--shadow-md); border-color: rgba(21,130,75,.2); }
.proc-d-num { width: clamp(56px,7vw,80px); height: clamp(56px,7vw,80px); border: 1.5px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.8vw,28px); font-weight: 500; color: var(--green); flex-shrink: 0; }
.proc-d-content h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,28px); font-weight: 500; color: var(--ink); margin-bottom: 10px; letter-spacing: -.2px; }
.proc-d-content p { font-size: 14px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.proc-d-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.proc-d-tag { padding: 4px 12px; background: var(--bg-xlt); border: 1px solid var(--line); border-radius: 100px; font-family: 'Inter'; font-size: 11px; font-weight: 500; color: var(--slate); letter-spacing: .3px; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-featured { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: clamp(40px,5vw,60px); }
@media(min-width:900px){ .blog-featured { grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; } }
.blog-featured-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(140deg, var(--green-dk), var(--green)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-featured-img::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 32px 32px; }
.blog-featured-img-icon { width: 80px; height: 80px; color: rgba(255,255,255,.15); position: relative; z-index: 1; }
.blog-featured-img-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.blog-featured-cat { display: inline-block; padding: 4px 12px; background: var(--orange); color: var(--white); font-family: 'Inter'; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 2px; margin-bottom: 14px; }
.blog-featured h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,42px); font-weight: 500; color: var(--ink); line-height: 1.15; letter-spacing: -.3px; margin-bottom: 16px; }
.blog-featured p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--muted); }
.blog-meta-author { display: flex; align-items: center; gap: 8px; }
.blog-meta-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 500; color: var(--white); }
.blog-meta-sep { width: 1px; height: 12px; background: var(--line); }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:640px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .35s, transform .35s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-card-thumb-icon { width: 56px; height: 56px; color: rgba(255,255,255,.18); }
.blog-card-thumb-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-family: 'Inter'; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: 10px; letter-spacing: -.2px; }
.blog-card p { font-size: 13.5px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--muted); }

/* ═══════════════════════════════════════════
   CAREERS (carreiras.html)
═══════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:520px){ .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .benefits-grid { grid-template-columns: repeat(3,1fr); } }
.benefit-card { padding: clamp(24px,3vw,32px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); transition: box-shadow .35s, border-color .35s, transform .35s; }
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: rgba(21,130,75,.2); transform: translateY(-3px); }
.benefit-icon { width: 48px; height: 48px; color: var(--green); margin-bottom: 18px; }
.benefit-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.benefit-card p { font-size: 13.5px; line-height: 1.8; color: var(--muted); }

.jobs-list { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 0 auto; }
.job-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(20px,3vw,28px); display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; transition: box-shadow .35s, border-color .35s, transform .35s; }
@media(min-width:768px){ .job-card { grid-template-columns: 1fr auto; } }
.job-card:hover { box-shadow: var(--shadow-md); border-color: rgba(21,130,75,.2); transform: translateY(-2px); }
.job-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 6px; letter-spacing: -.2px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.job-tag { padding: 4px 11px; background: var(--bg-xlt); border: 1px solid var(--line); border-radius: 100px; font-family: 'Inter'; font-size: 11px; font-weight: 500; color: var(--slate); letter-spacing: .3px; }
.job-tag.highlight { background: rgba(21,130,75,.08); border-color: rgba(21,130,75,.2); color: var(--green); }
.job-meta { display: flex; gap: 16px; font-family: 'Inter'; font-size: 12px; color: var(--muted); margin-top: 4px; }
.job-meta-item { display: flex; align-items: center; gap: 6px; }
.job-meta-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════
   CONTACT EXTRAS
═══════════════════════════════════════════ */
.map-block { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(140deg, var(--green-dk), var(--green)); position: relative; display: flex; align-items: center; justify-content: center; margin-top: clamp(40px,5vw,64px); }
.map-block::before { content:''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; }
.map-pin { position: relative; z-index: 1; text-align: center; color: var(--white); }
.map-pin-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.map-pin-icon svg { width: 100%; height: 100%; stroke: var(--white); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.map-pin h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; margin-bottom: 6px; }
.map-pin p { font-size: 13px; color: rgba(255,255,255,.7); }

/* Departments */
.depts-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px){ .depts-grid { grid-template-columns: repeat(2,1fr); } }
.dept-card { padding: clamp(24px,3vw,32px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); }
.dept-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.dept-card .dept-label { font-family: 'Inter'; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.dept-card .dept-info { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.dept-card .dept-info a { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate); transition: color .2s; }
.dept-card .dept-info a:hover { color: var(--green); }
.dept-card .dept-info svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 1.6; }
