:root {
  --bg: #0c0b0a;
  --bg-elevated: #151210;
  --ink: #f3ebe0;
  --cream: #e8dcc8;
  --muted: #9a8f82;
  --ember: #e85a1a;
  --ember-hot: #ff7a35;
  --ember-soft: rgba(232, 90, 26, 0.16);
  --ember-glow: rgba(232, 90, 26, 0.28);
  --line: rgba(232, 220, 200, 0.1);
  --radius: 1rem;
  --max: 68rem;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1100px 560px at 78% -8%, var(--ember-soft), transparent 58%),
    radial-gradient(800px 480px at -8% 42%, rgba(232, 220, 200, 0.035), transparent 52%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ember-hot);
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ember);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 0.4rem;
  z-index: 100;
}

.skip:focus {
  top: 1rem;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 10, 0.78);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-word {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--cream);
}

.logo-word:hover {
  color: var(--ink);
}

.logo-thumb {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
  object-fit: cover;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--cream);
}

.hero {
  padding: 3.25rem 1.5rem 1.5rem;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.hero-mark {
  justify-self: center;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0.4rem;
  background:
    radial-gradient(circle at 50% 45%, var(--ember-glow), transparent 62%),
    linear-gradient(160deg, rgba(232, 90, 26, 0.22), transparent 60%);
  box-shadow:
    0 0 0 1px var(--line),
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(232, 90, 26, 0.12);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #1a1612;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

h1,
h2 {
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cream);
}

h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.lede {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: var(--ember);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  background: var(--ember-hot);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232, 90, 26, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--cream) !important;
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(232, 220, 200, 0.28);
  background: rgba(232, 220, 200, 0.04);
  box-shadow: none;
}

/* Refined hairline — no barbed-wire SVG kitsch */
.rule {
  max-width: var(--max);
  margin: 3.25rem auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 220, 200, 0.08) 18%,
    rgba(232, 90, 26, 0.45) 50%,
    rgba(232, 220, 200, 0.08) 82%,
    transparent 100%
  );
}

.section {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.section-contact {
  background: linear-gradient(180deg, transparent, rgba(232, 90, 26, 0.055));
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.prose p:last-child {
  margin-bottom: 0;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem 3rem;
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot p {
  margin: 0;
}

.accent {
  color: var(--ember);
  margin-right: 0.35rem;
}

.muted {
  color: var(--muted);
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.shell.narrow {
  max-width: 36rem;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-copy .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mark {
    width: min(100%, 18rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

.trades-intro {
  margin-bottom: 1.5rem;
}

.trade-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.trade-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 18, 16, 0.65);
}

.trade-list strong {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trade-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .trade-list {
    grid-template-columns: 1fr 1fr;
  }
}
