:root{
  --bg: #0f201c;
  --bg2:#122622;
  --text:#e9e4d6;
  --muted:#cfc8b4;
  --accent:#a89b64;
  --line: rgba(233,228,214,.22);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 30% 10%, #1b3a33 0%, var(--bg) 65%);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing: .01em;
}

a{color:inherit; text-decoration:none}
a:focus-visible, button:focus-visible{outline:2px solid rgba(168,155,100,.8); outline-offset: 3px; border-radius: 8px}

.site{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.nav{
  position:absolute;
  top:0; left:0; right:0;
  z-index:10;
  padding: 22px 26px;
}

.nav-inner{
  max-width: var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{width:46px; height:46px; display:block}
.brand span{
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing:.18em;
  font-size:12px;
  text-transform:uppercase;
  opacity:.9;
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.22em;
}

.menu a{
  position:relative;
  padding: 10px 2px;
  opacity:.9;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0%;
  height:2px;
  background: var(--accent);
  transition: width 220ms ease, opacity 220ms ease;
  opacity:.85;
}
.menu a:hover::after{width:100%}
.menu a.active::after{width:100%}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-image, url("/img/hero.jpg"));
  background-size: cover;
  background-position: center;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.02);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 520px at 50% 30%, rgba(255,255,255,.07) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,.50) 0%, rgba(0,0,0,.22) 35%, rgba(0,0,0,.55) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  padding: 120px 22px 120px;
  max-width: 980px;
  animation: fadeIn 420ms ease both;
}

.h1{
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size: clamp(34px, 5vw, 62px);
  margin:0 0 12px;
  text-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.sub{
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing:.04em;
  margin:0;
  opacity:.92;
}

/* Page-specific hero images */
.hero--about{
  --hero-image: url("/img/about.jpg");
}

.hero--careers{
  --hero-image: url("/img/careers.jpg");
}

/* Clean paragraph styling inside hero */
.hero .lead{
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(233,228,214,.12);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(4px);
}


.bottom-strip{
  position:absolute;
  left:0; right:0;
  bottom:0;
  z-index:2;
  padding: 18px 26px 22px;
}

.strip-inner{
  max-width: var(--max);
  margin:0 auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:14px;
  align-items:center;
  font-size: 11px;
  letter-spacing:.08em;
  color: var(--muted);
}

.strip-center a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color: var(--text);
  opacity:.92;
  transition: transform 160ms ease, opacity 160ms ease;
}
.strip-center a:hover{transform: translateY(-1px); opacity:1}

.strip-left{justify-self:start}
.strip-center{justify-self:center}
.strip-right{justify-self:end}

.page{
  padding: 120px 26px 80px;
}

.page .container{
  max-width: 860px;
  margin: 0 auto;
}

.page h1{
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin: 0 0 14px;
}

.page p{
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  margin: 0 0 16px;
}

.card{
  margin-top:22px;
  background: rgba(18,38,34,.6);
  border: 1px solid rgba(233,228,214,.12);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

@keyframes fadeIn{
  from{opacity:0; transform: translateY(6px)}
  to{opacity:1; transform: translateY(0)}
}

/* Mobile nav: simple wrap */
@media (max-width: 720px){
  .menu{gap:16px; letter-spacing:.16em}
  .strip-inner{grid-template-columns: 1fr; text-align:center}
  .strip-left,.strip-right{justify-self:center}
}
