:root {
  --ink: #0c0f14;
  --ink-2: #141922;
  --ink-3: #1c2430;
  --bone: #efe8dc;
  --bone-2: #d8cfc0;
  --mute: #9a9184;
  --ember: #d85a1a;
  --ember-2: #f07a3a;
  --line: rgba(239, 232, 220, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-2);
  margin: 0 0 12px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.02em; line-height: 1.12; margin: 0; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--bone-2); }
.lede { font-size: 1.15rem; max-width: 42rem; }
.lede a, p a.text-link {
  color: var(--ember-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lede a:hover, p a.text-link:hover { color: var(--bone); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ember);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--ember-2); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--ink-3); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(12, 15, 20, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand svg { flex-shrink: 0; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand small { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

nav.links { display: flex; align-items: center; gap: 28px; }
nav.links a { color: var(--bone-2); font-size: 0.95rem; }
nav.links a:hover, nav.links a[aria-current="page"] { color: var(--bone); }
nav.links .btn { padding: 0.6rem 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 42px;
  height: 42px;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.7);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,15,20,0.55) 0%, rgba(12,15,20,0.72) 40%, rgba(12,15,20,0.97) 100%),
    linear-gradient(90deg, rgba(12,15,20,0.82) 0%, rgba(12,15,20,0.35) 55%, transparent 75%);
}
.hero-copy { position: relative; z-index: 2; padding: 8rem 0 4.5rem; max-width: 740px; }
.hero-copy p { color: var(--bone); }

.band { padding: 5.5rem 0; }
.band-alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  padding: 1.4rem 1.3rem 1.5rem;
  min-height: 100%;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.98rem; }
.card a.more { display: inline-block; margin-top: 14px; color: var(--ember-2); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

.step { counter-increment: step; }
.step .num {
  font-family: var(--mono);
  color: var(--ember-2);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.photo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.cta {
  background:
    linear-gradient(180deg, rgba(12,15,20,0.55), rgba(12,15,20,0.88)),
    url("../img/racks.jpg") center / cover no-repeat;
  border-block: 1px solid var(--line);
}
.cta .wrap { padding: 5.5rem 0; max-width: 720px; }

form.brief {
  display: grid;
  gap: 14px;
  max-width: 560px;
}
label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
input, textarea, select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  border-radius: 2px;
}
input:focus, textarea:focus { outline: 1px solid var(--ember); }
textarea { min-height: 140px; resize: vertical; }

.page-hero { padding: 5.5rem 0 2.5rem; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 42rem; }

.pricing-section { padding: 3.5rem 0; }
.pricing-section + .pricing-section { border-top: 1px solid var(--line); }
.pricing-section > .wrap > h2 { margin-bottom: 0.4rem; }
.pricing-section .section-desc {
  max-width: 42rem;
  margin: 0 0 1.75rem;
  color: var(--bone-2);
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
  align-items: stretch;
}
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  padding: 1.4rem 1.3rem 1.5rem;
  min-height: 100%;
}
.pkg h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}
.pkg .price {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ember-2);
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.85rem;
  line-height: 1.1;
}
.pkg .price .period {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0;
}
.pkg .billing {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1rem;
}
.pkg ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}
.pkg li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.4rem 0;
  color: var(--bone-2);
  font-size: 0.98rem;
}
.pkg li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ember-2);
  font-size: 0.85rem;
}
.pkg .btn { align-self: flex-start; margin-top: auto; }
.card .btn { margin-top: 1rem; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2.8rem;
  color: var(--mute);
  font-size: 0.9rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot a:hover { color: var(--bone); }
.legal { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  nav.links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 22px;
    gap: 14px;
  }
  nav.links.open { display: flex; }
}
