:root{
  --frost:#c3bdb8;
  --softBtn:rgba(221,218,218,1);
  --text:#1f2937;
  --muted:rgba(31,41,55,0.70);
  --muted2:rgba(31,41,55,0.55);
  --border:rgba(31,41,55,0.14);
  --divider:rgba(31,41,55,0.10);
  --shadow:0 18px 60px rgba(17,24,39,0.10);
  --radius:18px;
  --glass:rgba(243,244,246,0.35);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  background: var(--frost);
  color: var(--text);
}

.sheet,
.sheet * {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;

  word-break: normal;
  overflow-wrap: normal;
}
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}


/* ===== NAVBAR (About-style) ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(31,41,55,0.10);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar__inner{
  width:min(1100px, 92vw);
  margin:0 auto;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  text-decoration:none;
  color:var(--text);
  font-weight:800;
  letter-spacing:0.2px;
  font-size:16px;
}
.brand__dot{color:#f59e0b}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav__link{
  text-decoration:none;
  color:rgba(31,41,55,0.82);
  font-weight:700;
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:160ms ease;
}

.nav__link:hover{
  background: rgba(221,218,218,0.75);
  border:1px solid rgba(31,41,55,0.14);
  color:#1f2937;
}

.nav__link.is-active{
  background: var(--softBtn);
  border:1px solid rgba(31,41,55,0.18);
  color:#1f2937;
}

/* ===== RESUME SHEET ===== */
.sheet{
  margin:26px auto 0;
  background: rgba(195,189,184,0.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.sheet__top{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:18px;
  padding:22px 22px;
  border-bottom:1px solid var(--divider);
}

.sheet__nameBlock{
  padding-right:12px;
  border-right:1px solid var(--divider);
}

.name{
  margin:0;
  font-size:34px;
  letter-spacing:0.06em;
  font-weight:900;
}

.role{
  margin-top:6px;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
  line-height:1.35;
}

.sheet__contact{
  display:grid;
  gap:8px;
  align-content:start;
  padding-left:6px;
}

.contactItem{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:rgba(31,41,55,0.88);
}

.dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(31,41,55,0.55);
  margin-top:6px;
  flex:0 0 auto;
}

.sheet__about{
  padding:14px 22px 18px;
  border-bottom:1px solid var(--divider);
}

.stripTitle{
  margin:0 0 8px;
  font-size:13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(31,41,55,0.78);
}

.stripText{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:rgba(31,41,55,0.92);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
}

/* Columns */
.sheet__grid{
  display:grid;
  grid-template-columns:0.42fr 0.58fr;
  gap:0;
}

.leftCol{
  padding:18px 18px 20px 22px;
  border-right:1px solid var(--divider);
}

.rightCol{
  padding:18px 22px 20px 18px;
}

.block{margin-bottom:18px}

.blockTitle{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(31,41,55,0.75);
  font-weight:800;
}

.list{
  margin:0;
  padding-left:16px;
  display:grid;
  gap:8px;
  color:rgba(31,41,55,0.90);
  font-size:13.5px;
  line-height:1.55;
  text-align:justify;
  hyphens:auto;
}

.item{margin-bottom:12px}
.itemHead{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:nowrap;
}

.itemRole{font-weight:900;font-size:13.5px}
.itemDate{
  font-size:12px;
  color:var(--muted2);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.itemRole{
  font-weight:900;
  font-size:13.5px;
  flex: 1 1 auto;
  min-width: 0;              /* allows proper truncation/wrapping */
}

.itemDate{
  flex: 0 0 auto;
  white-space: nowrap;       /* keeps year together */
}
.itemOrg{
  margin-top:6px;
  font-size:13px;
  color:rgba(31,41,55,0.88);
  line-height:1.55;
  text-align:justify;
  hyphens:auto;
}

/* Experience */
.job{
  padding-bottom:14px;
  margin-bottom:14px;
  border-bottom:1px solid var(--divider);
}
.job:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}

.jobHead{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom:8px;
}

.jobRole{font-weight:900;font-size:14px}
.jobOrg{
  margin-top:4px;
  font-size:13px;
  color:rgba(31,41,55,0.88);
  font-weight:700;
}
.jobDate{
  font-size:12px;
  color:var(--muted2);
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.bullets{
  margin:0;
  padding-left:16px;
  display:grid;
  gap:8px;
  font-size:13.5px;
  line-height:1.55;
  color:rgba(31,41,55,0.90);
  text-align:justify;
  hyphens:auto;
}

/* Tags */
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(221,218,218,0.70);
  border:1px solid rgba(31,41,55,0.12);
  font-size:12px;
  font-weight:800;
  color:rgba(31,41,55,0.88);
}

.refText{
  margin:0;
  font-size:13.5px;
  color:rgba(31,41,55,0.88);
}

/* ===== FOOTER ===== */
.footer{
  background:#0b1220;
  color:rgba(255,255,255,0.86);
  padding:30px 0;
  margin-top:26px;
}

.footer__inner{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:14px;
  align-items:center;
}

.footer__name{font-weight:900;letter-spacing:0.2px}
.footer__meta{font-size:12px;opacity:0.8;margin-top:6px}

.footer__right{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer__right a{
  color:rgba(255,255,255,0.86);
  text-decoration:none;
  font-weight:700;
  font-size:12.5px;
}
.footer__right a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}
.contactLink {
  color: rgba(31, 41, 55, 0.88);
  text-decoration: none;
  transition: 180ms ease;
  font-weight: 700;
}

.contactLink:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__copy{font-size:12px;opacity:0.7;text-align:right}

/* Responsive */
@media (max-width: 980px){
  .sheet__top{grid-template-columns:1fr}
  .sheet__nameBlock{border-right:none;padding-right:0}
  .sheet__grid{grid-template-columns:1fr}
  .leftCol{border-right:none;border-bottom:1px solid var(--divider)}
  .footer__inner{grid-template-columns:1fr}
  .footer__copy{text-align:left}
}

@media (max-width: 520px){
  .name{font-size:26px}
  .topbar__inner{height:auto;padding:10px 0}
  .nav{justify-content:flex-start}
}
