/* ============================================================
   THE NORTH LIMIT LLC — design tokens
   ============================================================ */
:root {
  --ink: #15171b;
  --ink-soft: #1d2026;
  --paper: #efe9da;
  --paper-high: #f7f3e9;
  --brass: #b98a4e;
  --brass-bright: #d3a668;
  --wine: #6e2b2b;
  --wine-soft: #8a3d3d;
  --slate: #56504a;
  --cream: #efe9da;
  --line-dark: rgba(239, 233, 218, 0.14);
  --line-light: rgba(21, 23, 27, 0.13);
  --shadow: 0 18px 40px -22px rgba(21, 23, 27, 0.35);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* -------------------- Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 23, 27, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--cream);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.wordmark em {
  font-style: italic;
  color: var(--brass-bright);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(239, 233, 218, 0.8);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  border: 1px solid var(--brass);
  color: var(--cream);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brass); color: var(--ink); }

.nav-toggle { display: none; }

/* -------------------- Hero -------------------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 96px 32px 104px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-eyebrow {
  color: var(--brass-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  max-width: 15ch;
}

.hero p {
  font-size: 18px;
  color: rgba(239, 233, 218, 0.78);
  max-width: 44ch;
  margin: 0 0 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 3px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover { background: var(--brass-bright); transform: translateY(-1px); }
.btn-ghost {
  border-color: rgba(239, 233, 218, 0.35);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); }

.hero-art {
  align-self: center;
  justify-self: center;
}

.hero-note {
  margin-top: 44px;
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.hero-note .stat { max-width: 220px; }
.hero-note .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brass-bright);
  font-weight: 500;
}
.hero-note .stat span {
  font-size: 13.5px;
  color: rgba(239, 233, 218, 0.62);
}

/* -------------------- Section shell -------------------- */
section { padding: 100px 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section-head p {
  color: var(--slate);
  font-size: 16.5px;
  max-width: 52ch;
  margin: 0;
}

/* -------------------- Services -------------------- */
.services { background: var(--paper); }

.service-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--line-light);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--line-light); }

.service-icon {
  width: 58px;
  height: 58px;
  color: var(--wine);
}

.service-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.005em;
}

.service-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--wine);
  font-size: 15px;
}

.service-body p.lead {
  font-size: 16.5px;
  color: var(--ink);
  max-width: 62ch;
  margin: 0 0 20px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  max-width: 62ch;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--slate);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

/* -------------------- Process band -------------------- */
.process {
  background: var(--wine);
  color: var(--cream);
}
.process .section-head h2 { color: var(--cream); }
.process .section-head p { color: rgba(239, 233, 218, 0.75); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-step { border-top: 1px solid rgba(239, 233, 218, 0.3); padding-top: 20px; }
.process-step .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass-bright);
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 10px;
}
.process-step p {
  color: rgba(239, 233, 218, 0.78);
  font-size: 15px;
  margin: 0;
}

/* -------------------- Contact -------------------- */
.contact { background: var(--paper-high); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 14ch;
}
.contact p {
  color: var(--slate);
  font-size: 16.5px;
  max-width: 46ch;
  margin: 0 0 32px;
}

.contact-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-card p.small {
  color: rgba(239, 233, 218, 0.65);
  font-size: 14px;
  margin: 0 0 6px;
}
.contact-card .email {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 24px;
  word-break: break-word;
  color: var(--brass-bright);
}
.contact-card .btn-primary { width: 100%; justify-content: center; }
.contact-card ul {
  list-style: none;
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  color: rgba(239, 233, 218, 0.7);
}
.contact-card li { margin-bottom: 8px; }

/* -------------------- Footer -------------------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(239, 233, 218, 0.65);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .wordmark { margin-bottom: 14px; }
.footer-brand p {
  max-width: 34ch;
  color: rgba(239, 233, 218, 0.55);
  margin: 0;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 14px;
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-col address {
  font-style: normal;
  line-height: 1.7;
  color: rgba(239, 233, 218, 0.65);
}
.footer-col a {
  text-decoration: none;
  color: rgba(239, 233, 218, 0.65);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(239, 233, 218, 0.45);
}
.footer-bottom a { color: rgba(239, 233, 218, 0.45); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------- Terms page -------------------- */
.legal {
  background: var(--paper-high);
  padding: 88px 0 100px;
}
.legal .wrap { max-width: 760px; }
.legal-header { margin-bottom: 48px; }
.legal-header .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--wine);
  font-size: 16px;
  margin: 0 0 10px;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 14px;
  line-height: 1.1;
}
.legal-header p { color: var(--slate); margin: 0; }

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 44px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 14px; padding-left: 22px; }
.legal-body strong { color: var(--wine); }
.legal-body .party-block {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 20px 0 32px;
}
.legal-body .party-block p { margin: 0 0 6px; font-size: 15px; }
.legal-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 13.5px;
  color: var(--slate);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-art { justify-self: start; max-width: 340px; }
  .hero-note { flex-wrap: wrap; row-gap: 20px; }
  .service-row { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .wrap, .nav, .hero-inner, .hero-note { padding-left: 20px; padding-right: 20px; }
  section { padding: 72px 0; }
}
