/* =========================================================
   NARHURST LTD — Corporate site (mobile-first)
   Palette: Navy + Gold, premium, calm, credible.
   ========================================================= */

:root{
  --bg0:#071423;      /* deep navy */
  --bg1:#0b1b2b;      /* navy */
  --card:#0f263b;     /* card navy */
  --line:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --gold:#d6b25e;
  --gold2:rgba(214,178,94,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 700px at 50% -10%, rgba(214,178,94,.10), transparent 50%),
              radial-gradient(900px 600px at 10% 10%, rgba(255,255,255,.08), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  padding: 18px 16px;
}

.header{
  position: sticky;
  top:0;
  z-index: 10;
  background: rgba(7,20,35,.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.20);
  flex: 0 0 auto;
}
.brand-mark img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.brand-name{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
  min-width: 0;
}
.brand-name strong{
  letter-spacing: .02em;
  font-weight: 900;
  font-size: 15px;
}
.brand-name span{
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.nav a{
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.85);
}
.nav a:hover{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  text-decoration: none;
}
.nav a.active{
  border-color: rgba(214,178,94,.55);
  background: rgba(214,178,94,.10);
  color: rgba(255,255,255,.95);
}

.hero{
  padding: 26px 0 18px;
}

.hero-grid{
  display:grid;
  gap: 14px;
}

.hero-card{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.hero-media{
  position: relative;
  height: 250px;
  background: #08192b;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity: .95;
  filter: saturate(1.02) contrast(1.05);
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 360px at 60% 20%, rgba(214,178,94,.18), transparent 60%),
              linear-gradient(180deg, rgba(7,20,35,.15), rgba(7,20,35,.85));
}

.hero-body{
  padding: 18px 16px 16px;
}

.kicker{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.kicker i{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,178,94,.18);
  display:inline-block;
}

.h1{
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 950;
}
.lead{
  margin:0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}

.cta-row{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  text-decoration:none;
}
.btn:hover{
  background: rgba(255,255,255,.06);
  text-decoration:none;
}
.btn-primary{
  border-color: rgba(214,178,94,.55);
  background: rgba(214,178,94,.15);
}
.btn-primary:hover{
  background: rgba(214,178,94,.20);
}
.btn span{
  opacity:.8;
  font-weight: 800;
}

.section{
  padding: 10px 0 26px;
}

.grid{
  display:grid;
  gap: 12px;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 16px;
}

.card h2{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 950;
}
.card p, .card li{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.card ul{
  margin: 10px 0 0 18px;
  padding:0;
}
.card .meta{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

.pills{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.85);
}
.pill.gold{
  border-color: rgba(214,178,94,.55);
  background: rgba(214,178,94,.10);
}

.page-title{
  padding: 18px 0 6px;
}
.page-title .h1{
  margin: 0 0 6px;
}

.form{
  display:grid;
  gap: 12px;
}
.label{
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.88);
}
.input, .textarea, .select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,20,35,.35);
  padding: 10px 12px;
  color: rgba(255,255,255,.92);
  outline: none;
  font: inherit;
}
.textarea{ min-height: 130px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus{
  border-color: rgba(214,178,94,.70);
  box-shadow: 0 0 0 3px rgba(214,178,94,.18);
}
.fine{
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted2);
}

.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0 26px;
  color: var(--muted2);
  font-size: 12px;
}
.footer-grid{
  display:grid;
  gap: 10px;
}
.footer a{ color: rgba(255,255,255,.80); }

.hr{
  height:1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}

@media (min-width: 860px){
  .container{ padding: 18px 22px; }
  .hero-grid{
    grid-template-columns: 1.25fr .75fr;
    align-items: stretch;
  }
  .hero-media{ height: 360px; }
  .grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
  .grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
  .h1{ font-size: 34px; }
}

/* =======================
   Premium polish overrides
   ======================= */

:root{
  --line: rgba(255,255,255,.08);
  --shadow: 0 22px 70px rgba(0,0,0,.40);
}

.header{
  background: rgba(7,20,35,.62);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav a{
  padding: 7px 10px;
  font-size: 12.5px;
  letter-spacing: .01em;
}

.hero{
  padding: 22px 0 14px;
}

.hero-card{
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}

.hero-body{
  padding: 18px 18px 18px;
}

.kicker{
  color: rgba(255,255,255,.74);
}

.h1{
  font-size: 30px;
  letter-spacing: -0.03em;
}

.lead{
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255,255,255,.72);
}

.btn{
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.btn-primary{
  border-color: rgba(214,178,94,.50);
  background: rgba(214,178,94,.12);
}

.card{
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.card h2{
  font-size: 15px;
}

.footer{
  border-top: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
}

@media (min-width: 860px){
  .h1{ font-size: 38px; }
  .hero-media{ height: 380px; }
  .hero-body{ padding: 20px 20px 20px; }
}

/* =======================
   Hero visibility overrides
   - Ensure the Narhurst hero artwork is fully visible (no cropping)
   - Remove heavy overlay so the emblem and wordmark read clearly
   ======================= */

.hero-media{
  height: auto !important;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08192b;
}

.hero-media img{
  width: 100%;
  height: auto !important;
  max-height: 560px;
  object-fit: contain !important;
  opacity: 1;
  filter: none;
}

.hero-media::after{
  /* soften overlay */
  background: radial-gradient(800px 360px at 60% 20%, rgba(214,178,94,.10), transparent 62%),
              linear-gradient(180deg, rgba(7,20,35,.05), rgba(7,20,35,.35));
}

/* =======================
   Hero width alignment overrides
   Make hero frame align with other cards and container rhythm
   ======================= */

.hero-grid{
  max-width: var(--max) !important;
  margin: 0 auto !important;
}

.hero-card{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.hero-media{
  padding: 22px 22px;
}

@media (min-width: 860px){
  .hero-grid{
    max-width: var(--max) !important;
  }
}

/* =======================
   Select / filter readability and premium feel
   - Fix unreadable dropdown text on light native option panels
   - Give closed controls a cleaner corporate appearance
   ======================= */

.select,
select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 46px;
  padding: 11px 42px 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(7,20,35,.42);
  color: rgba(255,255,255,.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 8px 22px rgba(0,0,0,.18);
  font-weight: 700;
  letter-spacing: .01em;
}

.select:hover,
select:hover{
  border-color: rgba(214,178,94,.36);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    rgba(7,20,35,.48);
}

.select:focus,
select:focus{
  border-color: rgba(214,178,94,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 0 3px rgba(214,178,94,.16),
    0 10px 26px rgba(0,0,0,.22);
}

/* Native dropdown list items */
select option{
  color: #0b1624;
  background: #f4f7fb;
  font-weight: 600;
}

/* Improve disabled / placeholder-looking items in open menus */
select option:disabled{
  color: #6b7788;
  background: #eef2f7;
}

/* IE/old Edge cleanup */
select::-ms-expand{
  display: none;
}