:root{
  --navy:#08152f;
  --navy2:#14284e;
  --red:#d62331;

  --page-top:#4a4a48;
  --page-mid:#41413f;
  --page-bottom:#383837;

  --ink:#f1f1ee;
  --muted:#d0d2cf;
  --line:#5d5d5a;

  --panel:#2f302f;
  --panel-2:#353635;
  --panel-border:#50514f;

  --charcoal:#202522;
  --charcoal-panel:#292f2b;
  --charcoal-line:#3e4641;

  --shadow:0 22px 55px rgba(0,0,0,.24);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:var(--page-bottom);
}

body{
  margin:0;
  min-height:100vh;

  background:
    linear-gradient(
      135deg,
      var(--page-top) 0%,
      var(--page-mid) 50%,
      var(--page-bottom) 100%
    );

  color:var(--ink);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a{
  color:inherit;
}

.wrap{
  width:min(1160px,calc(100% - 40px));
  margin:auto;
}

/* -------------------------------------------------
   Header / navigation
------------------------------------------------- */

.site-header{
  position:sticky;
  top:0;
  z-index:20;

  background:rgba(8,21,47,.98);
  color:#fff;

  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 4px 18px rgba(0,0,0,.20);
}

.nav{
  min-height:72px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.01em;
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
}

nav a{
  color:#dfe6f5;
  text-decoration:none;
  font-size:.94rem;
}

nav a:hover{
  color:#fff;
}

.shop-link{
  background:var(--red);
  color:#fff !important;

  padding:10px 15px;

  border-radius:999px;

  font-weight:800;
}

/* -------------------------------------------------
   Hero
------------------------------------------------- */

.hero{
  min-height:680px;

  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;

  padding-top:72px;
  padding-bottom:72px;
}

.eyebrow{
  margin:0 0 16px;

  color:#ff939b;

  font-size:.76rem;
  font-weight:900;

  letter-spacing:.15em;
  text-transform:uppercase;
}

h1{
  margin:0 0 24px;

  color:#fff;

  font-size:clamp(3.1rem,7vw,6.7rem);
  line-height:.92;

  letter-spacing:-.055em;
}

h2{
  color:#fff;
  font-size:2.2rem;
}

.lede{
  max-width:720px;

  color:#e0e2df;

  font-size:1.18rem;
  line-height:1.72;
}

.button{
  display:inline-block;

  margin-top:14px;
  padding:14px 20px;

  background:var(--navy);
  color:#fff;

  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;

  text-decoration:none;
  font-weight:800;

  box-shadow:0 8px 20px rgba(0,0,0,.20);
}

.button:hover{
  filter:brightness(1.10);
}

.button.red{
  background:var(--red);
}

/*
  IMPORTANT:
  No CSS drop-shadow here.
  The generated sign PNG already contains a subtle halo/shadow.
*/
.hero-art img{
  width:100%;
  display:block;
  filter:none;
}

/* -------------------------------------------------
   Dark information band
------------------------------------------------- */

.band{
  background:var(--charcoal);

  padding:80px 0;

  color:#f2f4f1;

  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(0,0,0,.34);
}

.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.card{
  padding:36px;

  background:var(--charcoal-panel);
  color:#f2f4f1;

  border:1px solid var(--charcoal-line);
  border-radius:20px;

  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

.card h2{
  margin:0 0 14px;
  color:#fff;
}

.card p{
  color:#c9cec9;
  line-height:1.7;
}

.card .eyebrow{
  color:#f18a92;
}

.card.accent{
  border-top:5px solid var(--red);
}

/* -------------------------------------------------
   General sections
------------------------------------------------- */

.section{
  padding:76px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;

  margin-bottom:28px;
}

.section-head h2{
  margin-bottom:0;
}

.section-head a{
  color:#fff;
  font-weight:700;
}

.section-head a:hover{
  color:#ffb4ba;
}

/* -------------------------------------------------
   Merchandise and article grids
------------------------------------------------- */

.product-grid,
.article-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.product,
.article-card{
  overflow:hidden;

  background:var(--panel);

  border:1px solid var(--panel-border);
  border-radius:18px;

  box-shadow:var(--shadow);
}

.product img{
  width:100%;
  display:block;

  aspect-ratio:4/3;
  object-fit:contain;

  padding:18px;

  background:#3b3c3b;
}

.product-body,
.article-body{
  padding:22px;
  color:#f1f1ee;
}

.price{
  color:#ff8b94;

  font-size:1.2rem;
  font-weight:900;
}

.product h3,
.article-card h3{
  margin:8px 0 10px;
  color:#fff;
}

.product p,
.article-card p{
  color:#d2d5d1;
  line-height:1.6;
}

.product a,
.article-card a{
  color:#fff;
}

.small{
  color:#bfc3bf;
  font-size:.86rem;
}

/* -------------------------------------------------
   Article pages
------------------------------------------------- */

.article-list{
  max-width:850px;
}

.article-page{
  padding:70px 0;
}

.article-page article{
  max-width:850px;

  margin:auto;
  padding:42px;

  background:var(--panel);

  border:1px solid var(--panel-border);
  border-radius:18px;

  box-shadow:var(--shadow);
}

.article-page .body{
  color:#e0e2df;

  line-height:1.78;
  white-space:pre-wrap;
}

/* -------------------------------------------------
   Empty states
------------------------------------------------- */

.empty{
  padding:25px;

  color:#e7e9e6;
  background:rgba(31,32,31,.45);

  border:1px dashed #696a68;
  border-radius:14px;
}

/* -------------------------------------------------
   Footer
------------------------------------------------- */

.site-footer{
  padding:36px 0;

  background:#050c1c;
  color:#aeb9cf;

  font-size:.88rem;

  border-top:1px solid rgba(255,255,255,.06);
}

.site-footer .wrap{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.hosted{
  white-space:nowrap;
}

/* -------------------------------------------------
   Responsive
------------------------------------------------- */

@media(max-width:900px){
  .product-grid,
  .article-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .hero{
    min-height:auto;

    grid-template-columns:1fr;
    gap:36px;
  }

  .hero-art{
    order:-1;
  }

  .content-grid,
  .product-grid,
  .article-grid{
    grid-template-columns:1fr;
  }

  nav a:not(.shop-link){
    display:none;
  }

  .site-footer .wrap{
    display:block;
  }

  .hosted{
    white-space:normal;
  }
}