:root{
  --shell-gold:#c8960c;
  --shell-gold-light:#e8b84b;
  --shell-gold-dark:#8b6508;
  --shell-dark:#140700;
  --shell-dark-2:#241103;
  --shell-cream:#fdf6e3;
  --shell-cream-2:#f7ecd2;
  --shell-panel:#fffdf8;
  --shell-text:#2c1a00;
  --shell-muted:#6f5a39;
  --shell-border:rgba(200,150,12,.2);
  --shell-shadow:0 18px 42px rgba(27,12,1,.12);
}

*{box-sizing:border-box}

body.site-page{
  margin:0;
  color:var(--shell-text);
  line-height:1.75;
  font-family:var(--font-body),-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left,rgba(232,184,75,.24),transparent 28%),
    linear-gradient(180deg,var(--shell-dark-2) 0 240px,#f8edd2 240px,#fdf6e3 100%);
}

body.site-page a{
  color:inherit;
  text-decoration:none;
}

.page-frame{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px 56px;
}

.shell-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0 14px;
  color:#f7ecd2;
  flex-wrap:wrap;
}

.shell-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-family:var(--font-heading),var(--font-body),sans-serif;
  font-size:1.06rem;
  font-weight:700;
}

.shell-brand-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:radial-gradient(circle,var(--shell-gold-light) 0%,var(--shell-gold) 58%,var(--shell-gold-dark) 100%);
  box-shadow:0 0 16px rgba(232,184,75,.38);
}

.shell-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  flex:1 1 420px;
}

.shell-nav a{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(232,184,75,.16);
  background:rgba(255,255,255,.04);
  font-size:.82rem;
  color:#f7ecd2;
  transition:all .2s ease;
}

.shell-nav a:hover,
.shell-nav a.is-active{
  color:#fff;
  border-color:rgba(232,184,75,.38);
  background:rgba(255,255,255,.09);
}

.shell-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex:1 1 320px;
}

.hero-panel,
.section-card{
  background:rgba(255,250,239,.96);
  border:1px solid var(--shell-border);
  border-radius:26px;
  box-shadow:var(--shell-shadow);
}

.hero-panel{
  padding:30px;
  background:
    radial-gradient(circle at top right,rgba(232,184,75,.16),transparent 34%),
    linear-gradient(135deg,rgba(255,250,239,.99),rgba(249,239,213,.96));
}

.section-card{
  margin-top:22px;
  padding:28px;
}

.shell-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(20,7,0,.92);
  color:#f5d078;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.shell-title{
  margin:16px 0 12px;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  color:var(--shell-dark);
  font-family:var(--font-heading),var(--font-body),sans-serif;
}

.shell-lead{
  margin:0;
  max-width:64ch;
  color:var(--shell-muted);
  font-size:1rem;
}

.shell-section-head{
  margin-bottom:18px;
  text-align:center;
}

.shell-section-head h2{
  margin:12px 0 10px;
  font-size:clamp(1.8rem,3vw,2.5rem);
  line-height:1.18;
  color:var(--shell-dark);
  font-family:var(--font-heading),var(--font-body),sans-serif;
}

.shell-section-head p{
  margin:0 auto;
  max-width:760px;
  color:var(--shell-muted);
  font-size:.92rem;
}

.shell-footer{
  margin-top:24px;
  padding:20px 0 8px;
  border-top:1px solid rgba(200,150,12,.18);
  color:#735f42;
  font-size:.88rem;
  text-align:center;
}

.shell-footer a{
  color:#7a1c12;
}

@media (max-width: 900px){
  .hero-panel,
  .section-card{
    padding:22px 18px;
  }
}

@media (max-width: 720px){
  .page-frame{
    padding:0 14px 40px;
  }

  .shell-topbar{
    align-items:flex-start;
  }

  .shell-nav{
    width:100%;
    order:3;
  }

  .shell-actions{
    width:100%;
    justify-content:stretch;
  }
}
