:root {
  --paper: #f1ece2;
  --paper-deep: #e3dac6;
  --paper-soft: #f8f3ea;
  --ink: #1c1c1a;
  --ink-soft: #3a3a36;
  --muted: #76736a;
  --rust: #b95837;
  --rust-deep: #8e3d22;
  --line: rgba(28, 28, 26, .18);
  --line-strong: rgba(28, 28, 26, .42);
  --max: 1160px;
  --content: 800px;
  --page-pad: clamp(20px, 4.5vw, 58px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(28, 28, 26, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 26, .026) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .42;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--rust); outline-offset: 4px; }

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-shell {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(241, 236, 226, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  width: clamp(92px, 8vw, 118px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
  padding: 0 20px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
}

.button:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.post-shell {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 80px) 0 clamp(62px, 8vw, 104px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--rust-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--rust-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.post-hero {
  padding-bottom: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid var(--line-strong);
}

h1 {
  margin: 18px 0 24px;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: .96;
  text-wrap: balance;
}

.post-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.64;
}

.post-body {
  padding-top: clamp(32px, 4.8vw, 54px);
}

.post-cover {
  display: block;
  width: 100%;
  max-height: 520px;
  margin: clamp(28px, 4vw, 46px) 0 0;
  border: 1px solid var(--line-strong);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.post-body p,
.post-body li {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
}

.post-body p {
  margin: 0 0 22px;
}

.post-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  line-height: 1.05;
}

.post-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.post-body li {
  position: relative;
  padding-left: 26px;
}

.post-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  background: var(--rust);
  transform: rotate(45deg);
}

.post-cta {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(340px, 1.22fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 68px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  background: rgba(248, 243, 234, .7);
}

.post-cta-copy {
  padding: 8px 0;
}

.post-cta-copy p {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.06;
}

.post-cta-copy > span {
  display: block;
  max-width: 280px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.65;
}

.post-lead-panel {
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(248, 243, 234, .16);
  border-radius: 6px;
  background: #28231f;
  color: var(--paper-soft);
  box-shadow: 0 20px 52px rgba(28, 28, 26, .14);
}

.post-lead-panel > p {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(248, 243, 234, .76);
  font-size: .86rem;
  line-height: 1.58;
}

.post-lead-form {
  display: grid;
  gap: 10px;
}

.post-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.post-lead-field {
  display: grid;
  gap: 6px;
}

.post-lead-field-full {
  grid-column: 1 / -1;
}

.post-lead-field label {
  color: rgba(248, 243, 234, .62);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.post-lead-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(248, 243, 234, .18);
  border-radius: 5px;
  background: rgba(10, 9, 8, .44);
  color: var(--paper-soft);
  font: inherit;
  font-size: .86rem;
  outline: 0;
  padding: 0 13px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.post-lead-field input::placeholder {
  color: rgba(248, 243, 234, .34);
}

.post-lead-field input:focus {
  border-color: rgba(248, 243, 234, .62);
  background: rgba(10, 9, 8, .68);
  box-shadow: 0 0 0 3px rgba(248, 243, 234, .07);
}

.post-lead-submit {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-radius: 5px;
  background: var(--paper-soft);
  color: var(--ink);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  padding: 0 10px 0 15px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.post-lead-submit span,
.post-phone-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.post-lead-submit:hover {
  background: #fffaf0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  transform: translateY(-2px);
}

.post-lead-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.post-lead-choice {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0;
  color: rgba(248, 243, 234, .48);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.post-lead-choice::before,
.post-lead-choice::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(248, 243, 234, .16);
}

.post-phone-cta {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 5px;
  background: var(--paper-soft);
  color: var(--ink);
  padding: 13px 12px 13px 15px;
  transition: transform .2s ease, background .2s ease;
}

.post-phone-cta:hover {
  background: #fffaf0;
  transform: translateY(-2px);
}

.post-phone-copy {
  display: grid;
  gap: 3px;
}

.post-phone-copy span {
  color: var(--rust-deep);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.post-phone-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

@media (max-width: 720px) {
  .nav-actions a:not(.button) { display: none; }
  .post-shell { width: min(100% - 32px, var(--content)); }
  h1 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .button { width: 100%; min-height: 48px; }
  .post-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .post-cta-copy { padding: 0; }
  .post-cta-copy > span { max-width: none; }
  .post-lead-grid { grid-template-columns: 1fr; }
  .post-lead-field-full { grid-column: auto; }
  .post-phone-copy strong { font-size: clamp(1.55rem, 8vw, 1.9rem); }
}
