/* Ortica Linear font faces */
@font-face{
  font-family: "Ortica Linear";
  src: url("assets/fonts/OrticaLinear-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Ortica Linear";
  src: url("assets/fonts/OrticaLinear-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Ortica Linear";
  src: url("assets/fonts/OrticaLinear-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root{
  --bg:#ffffff;
  --surface:#f2f1ee;
  --text:#45523e;
  --muted:#6f7767;
  --border:#d9d6cf;
  --accent:#0d402d;   /* accent green */
  --accent-2:#0f4d36; /* fallback */
  --nav-bg:#45523e;   /* navbar + footer */
  --nav-text:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.12);
  --radius:14px;
  --nav-h:64px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Ortica Linear", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:300; color:var(--text); background:var(--bg); line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}

img{max-width:100%; display:block}
.container{width:min(1120px, 92vw); margin-inline:auto}
.section{padding:96px 0; scroll-margin-top: calc(var(--nav-h) + 24px)}

h1,h2,h3{line-height:1.2; margin:0 0 12px}
h1{font-size: clamp(28px, 5vw, 42px); font-weight:700}
h2{font-size: clamp(22px, 3.2vw, 30px); font-weight:700}
h3{font-size: clamp(18px, 2.2vw, 22px); font-weight:700}
.lead{font-size: clamp(16px, 2.2vw, 18px); color:var(--muted); font-weight:300}
.muted{color:var(--muted)}
.small{font-size:13px}
.accent{color:var(--accent)}

/* Header / Navigation */
.site-header{
  position:sticky; top:0; z-index:1000; height:var(--nav-h);
  background: var(--nav-bg);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; height:var(--nav-h)}
.brand{
  color:var(--nav-text); font-weight:700; text-decoration:none; letter-spacing:.2px; padding:8px 0
}
.brand:hover{opacity:.9}
/* 'Harmonics' highlight (soft off-white, not green) */
.brand .mark{ color:#e9eee9; }

.nav-toggle{display:none; background:transparent; border:0; width:42px; height:42px; border-radius:10px}
.nav-toggle .bar{display:block; width:26px; height:2px; margin:6px auto; background:#fff; border-radius:2px}

.nav-list{display:flex; align-items:center; gap:10px; list-style:none; margin:0; padding:0}
.nav-link{
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:10px; text-decoration:none;
  color:var(--nav-text); font-weight:400; letter-spacing:.2px;
  transition:background .2s ease, transform .15s ease, border-color .2s ease;
}
.nav-link:hover{background:rgba(255,255,255,.14)}
.nav-link.active{outline:2px solid rgba(255,255,255,.6); outline-offset:2px}
.nav-link.resume{border:1px solid rgba(255,255,255,.35)}
.nav-link.resume:hover{border-color: rgba(255,255,255,.7); transform: translateY(-1px)}

/* Hero */
.hero-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:32px; align-items:center}
.hero-media img{border-radius:12px; box-shadow: var(--shadow); border:1px solid var(--border)}
.btn-download{
  display:inline-flex; align-items:center; gap:10px; margin-top:14px; padding:10px 14px;
  border-radius:12px; border:1px solid var(--border); background: var(--surface); color: var(--text);
  text-decoration:none; font-weight:400; letter-spacing:.2px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-download:hover{background:#e8e6df; border-color:#cbc7bf; transform: translateY(-1px)}
.btn-download.footer-cta{ margin-top:12px; } /* a bit of spacing under brand text */
.app-icon{width:28px; height:28px; border-radius:6px; border:1px solid var(--border)}

/* About sections */
.about-wrap{display:flex; align-items:center; gap:40px}
.about-text{flex:1}
.about-img img{max-width:420px; width:100%; border-radius:12px; box-shadow: var(--shadow)}
.about-right{flex-direction:row}
.about-left{flex-direction:row-reverse}

/* Quickfacts list */
.quickfacts{margin:18px 0 0; padding:0; list-style:none; display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:10px 18px}
.quickfacts strong{color:var(--text); font-weight:400}
.quickfacts span{color:var(--muted)}

/* Steps */
.steps{list-style:none; padding:0; margin:12px 0 0; display:grid; gap:14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))}
.step-card{padding:16px; border:1px solid var(--border); border-radius:var(--radius); background: var(--surface); box-shadow: var(--shadow)}

/* Chips */
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.chip{padding:8px 12px; border-radius:999px; background: var(--surface); border:1px solid var(--border)}

/* Helpful tiny note style */
.note{ color:var(--muted); margin-top:10px; font-size:14px }

/* Footer (same color as navbar) */
.site-footer{
  background: var(--nav-bg);
  color: var(--nav-text);
  padding:28px 0 18px;
}

/* Footer layout */
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:22px;
  align-items:start;
}
.footer-col{min-width:0}
.footer-brand{
  margin:0 0 6px;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight:700;
  color:#fff;
}
.footer-text{
  margin:0;
  color: rgba(255,255,255,.85);
  font-size:14px;
  font-weight:300;
}
/* Titles: make them white & a bit bigger */
.footer-title{
  margin:0 0 8px;
  font-size:14px;                /* bigger than before */
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#fff;                    /* full white per request */
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-link{
  display:inline-flex;
  align-items:center;
  padding:6px 0;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  transition: background .2s ease, transform .15s ease;
}
.footer-link:hover{ background: rgba(255,255,255,.08); }
.footer-textline{ cursor:default; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:18px;
  padding-top:12px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  font-size:13px;
  color: rgba(255,255,255,.92);
}
.footer-legal-link{
  color:#fff;
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.6);
}
.footer-legal-link:hover{
  border-bottom-color:#fff;
}
.legal-anchor{ height: 1px; }




/* Mobile */
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  .about-wrap{flex-direction:column}
  .about-left,.about-right{flex-direction:column}
  .about-img img{max-width:280px}

  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav-list{
    position:absolute; right:12px; top:calc(var(--nav-h) + 8px);
    background: var(--nav-bg); border:1px solid rgba(255,255,255,.25);
    border-radius:14px; padding:10px; display:none; flex-direction:column; gap:6px; min-width:260px
  }
  .nav-list.open{display:flex}

  .footer-grid{
    grid-template-columns: 1fr;
    gap:16px;
  }
  .footer-bottom{
    flex-direction:column;
    gap:8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none!important; transition:none!important; scroll-behavior:auto!important}
}
