:root{
  --green:#2F8F6B;
  --green-deep:#1F5E4A;
  --green-tint:#EAF1EE;
  --ink:#121412;
  --ink-2:#1B1D1B;
  --warm-white:#FAF9F7;
  --card:#FFFFFF;
  --gold:#C9A227;
  --gray:#9CA1A0;
  --gray-dark:#5B6260;
  --line-dark: rgba(250,249,247,0.12);
  --line-light: rgba(18,20,18,0.1);
  --shadow-sm: 0 1px 2px rgba(18,20,18,0.05), 0 10px 30px rgba(18,20,18,0.08);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--warm-white);color:var(--ink);font-family:'Inter', sans-serif;-webkit-font-smoothing:antialiased;}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
.wrap{max-width:1180px;margin:0 auto;padding:0 32px;}
.eyebrow{font-size:12px;letter-spacing:0.12em;text-transform:uppercase;color:var(--green);font-weight:700;}
h1,h2,h3{font-family:'Manrope', sans-serif;font-weight:700;margin:0;letter-spacing:-0.015em;}

/* NAV */
.nav{background:var(--ink);border-bottom:1px solid var(--line-dark);}
.nav-inner{max-width:1180px;margin:0 auto;padding:20px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{width:30px;height:30px;}
.brand-name{font-family:'Manrope', sans-serif;font-weight:800;font-size:15px;color:#fff;line-height:1.25;letter-spacing:0.02em;}
.brand-name span{display:block;font-weight:600;font-size:11px;letter-spacing:0.12em;color:var(--gray);}
.nav-links{display:none;align-items:center;gap:32px;}
@media(min-width:900px){.nav-links{display:flex;}}
.nav-links a{font-size:14px;font-weight:500;color:#EDECE8;position:relative;padding-bottom:4px;}
.nav-links a.active{color:#fff;}
.nav-links a.active:after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--green);}
.nav-links a:hover{color:#fff;}
.nav-right{display:flex;align-items:center;gap:16px;}
.lang-toggle{display:flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--gray);}
.lang-toggle a{color:var(--gray);padding:2px 4px;}
.lang-toggle a.active{color:#fff;}
.lang-toggle a:hover{color:#fff;}
.lang-toggle span{color:rgba(250,249,247,0.25);}
.btn{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:14px;padding:11px 20px;border-radius:8px;border:1.5px solid transparent;cursor:pointer;}
.btn-primary{background:var(--green-deep);color:#fff;}
.btn-primary:hover{background:var(--green);}
.btn-outline-dark{border-color:rgba(250,249,247,0.35);color:#fff;background:transparent;}
.btn-outline-dark:hover{border-color:#fff;}
.btn-outline-light{border-color:var(--line-light);color:var(--ink);background:transparent;}
.btn-outline-light:hover{border-color:var(--green-deep);color:var(--green-deep);}
.nav-menu-icon{display:flex;font-size:13px;font-weight:600;color:#fff;}
@media(min-width:900px){.nav-menu-icon{display:none;}}

/* HERO */
.hero{background:var(--ink);color:#fff;padding:64px 0 0;}
.hero-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;}
@media(min-width:940px){.hero-grid{grid-template-columns:1.05fr 0.95fr;gap:56px;}}
.hero h1{font-size:48px;line-height:1.1;color:#fff;margin-top:18px;}
.hero h1 .accent{color:var(--green);}
.hero p.sub{font-size:16.5px;line-height:1.65;color:#C7CBC8;max-width:460px;margin:20px 0 0;}
.hero-ctas{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap;}
.btn-lg{padding:14px 24px;font-size:14.5px;}
.social-row{display:flex;gap:18px;margin-top:36px;}
.social-row a{width:34px;height:34px;border:1px solid rgba(250,249,247,0.2);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#C7CBC8;}
.social-row a:hover{border-color:var(--green);color:var(--green);}
.social-row svg{width:16px;height:16px;}
.hero-photo{
  aspect-ratio:4/5;background:linear-gradient(160deg,#232620,#161815);border-radius:4px 4px 0 0;
  position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;
}
@media(min-width:940px){.hero-photo{aspect-ratio:auto;height:100%;min-height:560px;}}
.hero-photo img.mark{width:64px;height:64px;opacity:0.5;}
.hero-photo-label{position:absolute;top:16px;right:16px;background:rgba(0,0,0,0.5);color:#fff;font-size:10.5px;padding:5px 10px;border-radius:5px;}

/* ABOUT */
.about{padding:100px 0;}
.about-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:start;}
@media(min-width:900px){.about-grid{grid-template-columns:0.75fr 1.25fr;}}
.about-photo{aspect-ratio:4/5;border-radius:4px;position:relative;overflow:hidden;box-shadow:var(--shadow-sm);}
.signature{font-family:'Manrope',sans-serif;font-style:italic;font-weight:600;color:var(--gray-dark);margin-top:14px;font-size:15px;}
.about-copy-row{display:grid;grid-template-columns:1fr;gap:40px;}
@media(min-width:700px){.about-copy-row{grid-template-columns:1.2fr 0.8fr;}}
.about-copy h2{font-size:28px;margin-top:12px;line-height:1.25;}
.about-copy p{font-size:15px;line-height:1.75;color:var(--gray-dark);margin:16px 0 0;}
.value-list{display:flex;flex-direction:column;gap:26px;}
.value-item{display:flex;gap:14px;align-items:flex-start;}
.value-icon{width:34px;height:34px;border-radius:50%;border:1.5px solid var(--green-deep);color:var(--green-deep);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.value-icon svg{width:17px;height:17px;}
.value-item h3{font-size:15.5px;margin-bottom:3px;}
.value-item p{font-size:13.5px;color:var(--gray-dark);line-height:1.55;margin:0;}

/* PATHS */
.paths{background:var(--ink);color:#fff;padding:100px 0;}
.section-head{max-width:600px;margin:0 auto 48px;text-align:center;}
.section-head h2{font-size:30px;margin-top:12px;color:#fff;}
.section-head p{font-size:15px;color:#C7CBC8;margin-top:12px;}
.paths .eyebrow{color:var(--green);}
.path-grid{display:grid;grid-template-columns:1fr;gap:20px;}
@media(min-width:820px){.path-grid{grid-template-columns:repeat(3,1fr);}}
.path-card{background:var(--ink-2);border:1px solid var(--line-dark);border-radius:14px;padding:34px 28px;text-align:center;}
.path-icon{width:52px;height:52px;border-radius:50%;background:var(--green-deep);color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 22px;}
.path-icon svg{width:24px;height:24px;}
.path-card h3{font-size:19px;color:#fff;margin-bottom:4px;}
.path-tag{font-size:13px;color:var(--green);font-weight:600;display:block;margin-bottom:14px;}
.path-card p.desc{font-size:14px;color:#C7CBC8;line-height:1.6;margin:0 0 22px;}

/* EMAIL BAND */
.email-band{padding:64px 0;}
.email-card{background:var(--ink-2);border-radius:16px;padding:40px 36px;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;box-shadow:var(--shadow-sm);}
.email-left{display:flex;align-items:center;gap:18px;max-width:440px;}
.email-icon{width:42px;height:42px;border-radius:50%;background:var(--green-deep);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.email-icon svg{width:20px;height:20px;}
.email-left h3{font-size:17px;color:#fff;margin-bottom:5px;}
.email-left p{font-size:13.5px;color:#B9BEBB;margin:0;}
.email-form{display:flex;gap:10px;flex-wrap:wrap;flex:1;min-width:280px;max-width:440px;}
.email-form input{flex:1;min-width:180px;padding:12px 16px;border-radius:8px;border:1px solid var(--line-dark);background:#0F110F;color:#fff;font-size:14px;font-family:'Inter',sans-serif;}
.email-form input::placeholder{color:#7A807D;}
.email-note{width:100%;font-size:11.5px;color:#7A807D;margin-top:8px;}
.form-status{width:100%;font-size:12.5px;margin-top:4px;min-height:16px;}
.form-status-success{color:var(--green);font-weight:600;}
.form-status-error{color:#E5A5A5;font-weight:600;}

/* FOOTER */
footer{background:#0E100E;color:rgba(250,249,247,0.6);padding:56px 0 32px;}
.footer-top{display:flex;flex-wrap:wrap;gap:40px;justify-content:space-between;margin-bottom:32px;}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.footer-brand img{width:24px;height:24px;}
.footer-brand span{font-family:'Manrope',sans-serif;font-weight:700;color:#fff;font-size:14.5px;}
.footer-col p{font-size:13px;line-height:1.7;max-width:260px;margin:0 0 14px;}
.footer-col h4{font-size:12.5px;text-transform:uppercase;letter-spacing:0.08em;color:#8A908D;margin-bottom:14px;font-weight:700;}
.footer-col a{display:block;font-size:13.5px;margin-bottom:10px;}
.footer-col a:hover{color:#fff;}
.footer-social{display:flex;gap:14px;margin-bottom:16px;}
.footer-social a{width:30px;height:30px;border:1px solid rgba(250,249,247,0.15);border-radius:50%;display:flex;align-items:center;justify-content:center;}
.footer-social svg{width:14px;height:14px;}
.footer-cols{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:32px;}
@media(max-width:800px){.footer-cols{grid-template-columns:1fr 1fr;}}
.footer-bottom{border-top:1px solid rgba(250,249,247,0.1);padding-top:24px;font-size:12px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;}
