:root {
  --ink: #171512;
  --muted: #60594f;
  --paper: #fffaf1;
  --cream: #f6ecd7;
  --saffron: #c8841c;
  --red: #b63829;
  --red-dark: #872a22;
  --green: #164334;
  --green-2: #225c47;
  --line: rgba(23, 21, 18, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

code {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.1rem 0.3rem;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.9em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 21, 18, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 92px;
  height: 70px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--saffron);
}

.nav-cta,
.button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.1rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta {
  background: var(--saffron);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 94px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.9) 0%, rgba(23, 21, 18, 0.68) 42%, rgba(23, 21, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(23, 21, 18, 0.6) 0%, rgba(23, 21, 18, 0) 38%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.hero-content > * {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  margin: 0;
  line-height: 1.15;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--white);
}

.proof-strip {
  width: min(720px, 100%);
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.proof-strip div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 0.16rem 0 0;
  font-weight: 900;
  font-size: 1.05rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.trust-band {
  padding: 1.4rem 0;
  background: var(--green);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.6rem;
  align-items: center;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.trust-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.trust-grid li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.split,
.media-split,
.proposal-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.media-split {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.media-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.media-split.reverse figure {
  order: 2;
}

.lead {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.problem-section {
  background: var(--paper);
}

.risk-list {
  display: grid;
  gap: 1rem;
}

.risk-list article,
.feature-grid article,
.menu-card,
.proposal-form,
.quote-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.risk-list article {
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.35rem 1rem;
}

.risk-list span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
}

.risk-list p,
.feature-grid p,
.menu-card p,
.menu-card li,
.quote-panel p,
.faq-list p {
  color: var(--muted);
}

.risk-list p,
.feature-grid p,
.menu-card p,
.quote-panel p {
  margin: 0.45rem 0 0;
}

.operations-section,
.checklist-section,
.faq-section {
  background: var(--cream);
}

figure {
  margin: 0;
}

figure img,
.checklist-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  padding: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  padding: 1.35rem;
}

.menu-card.emphasized {
  background: var(--green);
  color: var(--white);
}

.menu-card.emphasized p,
.menu-card.emphasized li {
  color: rgba(255, 255, 255, 0.8);
}

.card-kicker {
  margin: 0 0 0.55rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card.emphasized .card-kicker {
  color: var(--saffron);
}

.menu-card ul,
.proposal-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.menu-card li + li,
.proposal-points li + li {
  margin-top: 0.38rem;
}

.culture-section {
  background: var(--paper);
}

.quote-panel {
  margin-top: 1.4rem;
  padding: 1.3rem;
  border-left: 4px solid var(--red);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.checklist-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
}

.download-form,
.proposal-form {
  margin-top: 1.5rem;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

label,
legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 21, 18, 0.22);
  border-radius: 8px;
  margin-top: 0.36rem;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(200, 132, 28, 0.55);
  outline-offset: 2px;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.35rem;
  margin: 0.72rem 0 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.checklist-preview {
  display: block;
  transform: rotate(1.5deg);
}

.proposal-section {
  background: var(--green);
  color: var(--white);
}

.proposal-section .eyebrow,
.proposal-section .lead {
  color: var(--saffron);
}

.proposal-section .lead,
.proposal-section p,
.proposal-section li {
  color: rgba(255, 255, 255, 0.82);
}

.proposal-form {
  padding: 1.25rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 0 0.8rem;
  padding: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--muted);
}

fieldset input {
  width: auto;
  min-height: 0;
  margin: 0;
}

.full-width {
  width: 100%;
  margin-top: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.footer {
  padding: 2.2rem 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.5fr;
  gap: 2rem;
  align-items: start;
}

.footer .brand-logo {
  width: 106px;
  height: 80px;
}

.footer p,
.footer address,
.footer-links {
  color: rgba(255, 255, 255, 0.72);
}

.footer address {
  font-style: normal;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

@media (max-width: 900px) {
  .nav {
    min-height: 84px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 84px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 21, 18, 0.92) 0%, rgba(23, 21, 18, 0.7) 54%, rgba(23, 21, 18, 0.22) 100%),
      linear-gradient(0deg, rgba(23, 21, 18, 0.42) 0%, rgba(23, 21, 18, 0) 45%);
  }

  .trust-grid,
  .split,
  .media-split,
  .media-split.reverse,
  .proposal-grid,
  .checklist-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-split.reverse figure {
    order: 0;
  }

  .trust-grid ul {
    justify-content: flex-start;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .checklist-preview {
    max-width: 360px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo {
    width: 72px;
    height: 56px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .footer .brand-logo {
    width: 88px;
    height: 66px;
  }

  .nav-cta {
    padding-inline: 0.85rem;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    margin-left: 12px;
    margin-right: auto;
    padding: 3.2rem 0;
  }

  .hero-content > * {
    max-width: min(62vw, 360px);
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-form,
  .field-pair {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
