:root {
  --ink: #0c3232;
  --night: #020909;
  --midnight: #251828;
  --plum: #422c47;
  --archive-blue: #4d869b;
  --sage: #7fa499;
  --parchment: #e4d6c8;
  --paper: #f3eee4;
  --aged-paper: #ebe1d2;
  --tape: rgba(211, 189, 166, 0.72);
  --ivory: #f5f0ea;
  --gold: #d7ad03;
  --gold-dark: #a58502;
  --muted: #5f6c68;
  --panel: #fdfcfb;
  --line: rgba(12, 50, 50, 0.18);
  --shadow: 0 24px 70px rgba(2, 9, 9, 0.2);
}

@font-face {
  font-family: "Dusty Strokes";
  src: url("assets/dustystrokesscript-webfont.woff") format("woff");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Alegreya Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 173, 3, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(37, 24, 40, 0.1) 0 44px, transparent 44px),
    repeating-linear-gradient(0deg, rgba(12, 50, 50, 0.025) 0 1px, transparent 1px 18px),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(2, 9, 9, 0.62), rgba(2, 9, 9, 0));
}

.brand,
.nav-links,
.hero-actions,
.proof-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Dusty Strokes", "Caudex", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory);
  background: rgba(2, 9, 9, 0.6);
  border: 1px solid rgba(245, 240, 234, 0.5);
  border-radius: 50%;
  font-family: "Caudex", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-links {
  gap: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid currentColor;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta {
  padding: 0 18px;
  color: var(--ivory);
  background: rgba(245, 240, 234, 0.1);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 234, 0.2);
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--ink);
  background: rgba(245, 240, 234, 0.92);
  border-bottom: 1px solid rgba(12, 50, 50, 0.12);
  backdrop-filter: blur(12px);
}

.home-header-overlay {
  position: absolute;
  left: 0;
  right: 0;
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(2, 9, 9, 0.62), rgba(2, 9, 9, 0));
  border-bottom: 0;
}

.home-header-overlay .brand-mark {
  color: var(--ivory);
  background: rgba(2, 9, 9, 0.6);
  border-color: rgba(245, 240, 234, 0.5);
}

.home-header-overlay .header-cta {
  color: var(--parchment);
  border-color: rgba(245, 240, 234, 0.72);
  background: rgba(245, 240, 234, 0.1);
}

.home-header .brand-mark {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.home-header .header-cta {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.home-header.home-header-overlay .header-cta {
  color: var(--parchment);
  border-color: rgba(245, 240, 234, 0.72);
  background: rgba(245, 240, 234, 0.1);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px clamp(18px, 6vw, 76px) 34px;
  border-bottom: 1px solid rgba(12, 50, 50, 0.22);
}

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

.hero-media {
  background-image: url("assets/sra-web-4.jpg");
  background-position: 62% center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 9, 9, 0.9) 0%, rgba(12, 50, 50, 0.76) 41%, rgba(228, 214, 200, 0.06) 100%),
    linear-gradient(0deg, rgba(2, 9, 9, 0.68), rgba(2, 9, 9, 0.04) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fcd32a;
}

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

h1 {
  margin: 0;
  max-width: 14ch;
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(245, 240, 234, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.78rem;
}

.button-primary {
  color: var(--night);
  background: var(--aged-paper);
  border-color: var(--aged-paper);
  box-shadow: 7px 7px 0 rgba(215, 173, 3, 0.32);
}

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

.button-secondary {
  color: var(--ivory);
  border-color: rgba(245, 240, 234, 0.62);
  background: transparent;
  backdrop-filter: none;
}

.button-ink {
  color: var(--ink);
  background: transparent;
  border-color: rgba(12, 50, 50, 0.62);
}

.home-page {
  background:
    linear-gradient(90deg, rgba(37, 24, 40, 0.08) 0 44px, transparent 44px),
    repeating-linear-gradient(0deg, rgba(12, 50, 50, 0.025) 0 1px, transparent 1px 18px),
    var(--ivory);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 156px clamp(18px, 6vw, 76px) 84px;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.home-hero h1 {
  max-width: 10.5ch;
  color: var(--ivory);
  font-size: clamp(4.2rem, 8vw, 8rem);
}

.home-hero-copy > p:not(.eyebrow),
.home-band > p,
.home-grid p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.62;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(245, 240, 234, 0.9);
  font-size: clamp(1.24rem, 2.2vw, 1.56rem);
}

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

.home-hero-media {
  background-image: url("assets/sra-web-4.jpg");
  background-position: 62% center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 9, 9, 0.9) 0%, rgba(12, 50, 50, 0.76) 41%, rgba(228, 214, 200, 0.06) 100%),
    linear-gradient(0deg, rgba(2, 9, 9, 0.68), rgba(2, 9, 9, 0.04) 42%);
}

.home-portrait {
  margin: 0;
  border: 1px solid rgba(12, 50, 50, 0.24);
  box-shadow: 18px 18px 0 rgba(127, 164, 153, 0.2);
}

.home-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
}

.home-band {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  padding: 76px clamp(18px, 6vw, 76px);
  background: var(--parchment);
  border-block: 1px solid rgba(12, 50, 50, 0.16);
}

.script-note {
  margin: 0;
  color: var(--plum);
  font-family: "Dusty Strokes", "Caudex", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
}

.home-archive {
  padding: 92px clamp(18px, 6vw, 76px);
}

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

.home-grid article {
  min-height: 248px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 10px 14px 0 rgba(89, 125, 115, 0.14);
}

.home-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--plum);
  font-family: "Caudex", Georgia, serif;
  font-weight: 700;
}

.home-cta {
  padding: 92px clamp(18px, 6vw, 76px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(12, 50, 50, 0.96), rgba(66, 44, 71, 0.98)),
    var(--ink);
}

.home-cta h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

.archive-hero {
  grid-template-columns: minmax(0, 1fr);
  background: var(--night);
}

.archive-hero .home-hero-copy {
  max-width: 880px;
}

.archive-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4.2rem, 8vw, 8rem);
}

.workflow-board {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(12, 50, 50, 0.24);
  background:
    linear-gradient(90deg, rgba(12, 50, 50, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 50, 50, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(228, 214, 200, 0.45)),
    var(--panel);
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: 18px 18px 0 rgba(77, 134, 155, 0.16);
}

.archive-label {
  width: fit-content;
  padding: 8px 12px;
  color: var(--plum);
  border: 1px solid rgba(66, 44, 71, 0.24);
  background: rgba(228, 214, 200, 0.68);
  font-family: "Caudex", Georgia, serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-node {
  position: absolute;
  display: grid;
  min-width: 118px;
  min-height: 64px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(12, 50, 50, 0.28);
  background: rgba(253, 252, 251, 0.9);
  font-family: "Caudex", Georgia, serif;
  font-weight: 700;
}

.node-one {
  left: 36px;
  top: 138px;
}

.node-two {
  right: 42px;
  top: 190px;
}

.node-three {
  left: 74px;
  bottom: 154px;
}

.node-four {
  right: 72px;
  bottom: 90px;
  color: var(--ivory);
  background: var(--ink);
}

.workflow-line {
  position: absolute;
  height: 1px;
  background: var(--archive-blue);
  transform-origin: left center;
  opacity: 0.75;
}

.line-one {
  left: 154px;
  top: 172px;
  width: 180px;
  transform: rotate(11deg);
}

.line-two {
  right: 130px;
  top: 254px;
  width: 210px;
  transform: rotate(143deg);
}

.line-three {
  left: 184px;
  bottom: 154px;
  width: 230px;
  transform: rotate(-12deg);
}

.workflow-board p {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: var(--muted);
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.45;
}

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

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

.pattern-grid span {
  min-height: 82px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(12, 50, 50, 0.16);
  background: rgba(253, 252, 251, 0.72);
  font-weight: 700;
  line-height: 1.35;
}

.pattern-grid span:last-child {
  grid-column: span 3;
  min-height: 68px;
  background: rgba(127, 164, 153, 0.2);
}

.offer-section,
.receives-section,
.transformation-section,
.jasmine-section,
.pricing-section,
.faq-section {
  padding: 92px clamp(18px, 6vw, 76px);
}

.offer-section,
.pricing-section,
.jasmine-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.offer-section {
  color: var(--ivory);
  background: var(--ink);
}

.offer-section .eyebrow,
.pricing-section .eyebrow,
.home-cta .eyebrow {
  color: #fcd32a;
}

.offer-copy {
  display: grid;
  gap: 18px;
}

.offer-copy p,
.jasmine-section p,
.fine-print,
.faq-list p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.offer-copy p {
  color: rgba(245, 240, 234, 0.82);
}

.receive-list,
.comparison-grid ul,
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.receive-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.receive-list li,
.comparison-grid li,
.pricing-card li {
  position: relative;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.receive-list li::before,
.comparison-grid li::before,
.pricing-card li::before {
  content: "";
  position: static;
  margin-top: 0.48em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.fine-print {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 0.98rem;
}

.transformation-section {
  background: var(--parchment);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-grid article,
.pricing-card {
  padding: 30px;
  border: 1px solid rgba(12, 50, 50, 0.18);
  background: var(--panel);
  box-shadow: 10px 14px 0 rgba(89, 125, 115, 0.14);
}

.comparison-grid h3,
.pricing-card h3 {
  margin-bottom: 22px;
}

.jasmine-section {
  background: var(--ivory);
}

.jasmine-section .home-portrait {
  max-width: 470px;
}

.pricing-section {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(12, 50, 50, 0.96), rgba(66, 44, 71, 0.98)),
    var(--ink);
}

.pricing-card {
  color: var(--ink);
}

.price {
  margin: 8px 0 22px;
  color: var(--ink);
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
}

.pricing-card .button {
  width: 100%;
  margin-top: 26px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(12, 50, 50, 0.16);
  background: rgba(253, 252, 251, 0.78);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-family: "Caudex", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}

.proof-strip div {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(228, 214, 200, 0.3);
  border-radius: 8px;
  background: rgba(228, 214, 200, 0.12);
  backdrop-filter: blur(12px);
}

.proof-strip dt {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fcd32a;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: rgba(245, 240, 234, 0.78);
  font-size: 0.86rem;
}

.section {
  position: relative;
  padding: 92px clamp(18px, 6vw, 76px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
  position: relative;
}

h2 {
  margin: 0;
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: "Caudex", Georgia, serif;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  position: relative;
  min-height: 252px;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
    var(--panel);
  box-shadow: 10px 14px 0 rgba(89, 125, 115, 0.14);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--plum);
  font-family: "Caudex", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.outcome-card p,
.process-copy p,
.process-list p,
.request-intro p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(12, 50, 50, 0.07), transparent 26%),
    var(--parchment);
}

.process-copy {
  position: sticky;
  top: 104px;
}

.process-copy p {
  max-width: 560px;
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(20, 32, 34, 0.16);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--night);
  background: var(--aged-paper);
  border: 1px solid rgba(12, 50, 50, 0.34);
  border-radius: 50%;
  font-family: "Caudex", Georgia, serif;
  font-weight: 800;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  background:
    repeating-linear-gradient(0deg, rgba(245, 240, 234, 0.035) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, rgba(12, 50, 50, 0.96), rgba(66, 44, 71, 0.98)),
    var(--ink);
  color: var(--ivory);
}

.request-intro p {
  max-width: 540px;
  color: rgba(245, 240, 234, 0.74);
}

.audit-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(228, 214, 200, 0.22);
  border-radius: 2px;
  background: rgba(245, 240, 234, 0.1);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(12, 50, 50, 0.24);
  border-radius: 2px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 173, 3, 0.45);
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--aged-paper);
}

.booking-panel p {
  margin: 0;
  color: rgba(245, 240, 234, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.form-note {
  min-height: 28px;
  margin: 0;
  color: rgba(245, 240, 234, 0.78);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(260px, 1fr) minmax(120px, 0.55fr);
  gap: 24px;
  align-items: center;
  min-height: 150px;
  padding: 28px clamp(30px, 7vw, 96px);
  color: var(--ink);
  background: var(--ivory);
  border-top: 2px solid var(--ink);
}

.site-footer p {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.site-footer p span {
  display: block;
}

.footer-mark {
  grid-column: 1;
  justify-self: start;
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(3.25rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.footer-mark sup {
  position: relative;
  top: -0.54em;
  margin-left: 4px;
  font-family: "Alegreya Sans", system-ui, sans-serif;
  font-size: 0.16em;
  font-weight: 700;
}

.footer-link {
  grid-column: 3;
  justify-self: end;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.privacy-page {
  min-height: 100vh;
  background: var(--ivory);
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 6vw, 86px);
  color: var(--ink);
  border-bottom: 1px solid rgba(12, 50, 50, 0.18);
}

.privacy-header .brand {
  color: var(--ink);
}

.privacy-header .brand-mark {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.privacy-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.privacy-shell h1 {
  max-width: none;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.privacy-shell > p {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
}

.privacy-frame {
  width: 100%;
  min-height: 72vh;
  border: 1px solid rgba(12, 50, 50, 0.2);
  background: var(--panel);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 9, 9, 0.9), rgba(12, 50, 50, 0.7));
  }

  .outcome-grid,
  .process,
  .request-section,
  .home-hero,
  .home-band,
  .home-grid,
  .archive-hero,
  .pattern-grid,
  .offer-section,
  .receive-list,
  .comparison-grid,
  .jasmine-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .pattern-grid span:last-child {
    grid-column: auto;
  }

  .workflow-board {
    min-height: 460px;
  }

  .home-header {
    position: relative;
  }

  .home-header-overlay {
    position: absolute;
  }

  .process-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 152px;
    line-height: 1.1;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .workflow-board {
    min-height: 420px;
    padding: 22px;
  }

  .workflow-node {
    min-width: 94px;
    min-height: 54px;
    font-size: 0.9rem;
  }

  .node-one {
    left: 22px;
    top: 116px;
  }

  .node-two {
    right: 22px;
    top: 162px;
  }

  .node-three {
    left: 32px;
    bottom: 138px;
  }

  .node-four {
    right: 28px;
    bottom: 92px;
  }

  .workflow-board p {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .line-one {
    left: 116px;
    width: 120px;
  }

  .line-two,
  .line-three {
    width: 130px;
  }

  .offer-section,
  .receives-section,
  .transformation-section,
  .jasmine-section,
  .pricing-section,
  .faq-section {
    padding-block: 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 26px;
  }

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

  .proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 24px;
  }

  .proof-strip div {
    min-width: 0;
    padding: 11px 10px;
  }

  .proof-strip dt {
    font-size: 0.92rem;
  }

  .proof-strip dd {
    font-size: 0.72rem;
  }

  .section {
    padding-block: 68px;
  }

  .audit-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
  }

  .site-footer p,
  .footer-mark,
  .footer-link {
    grid-column: 1;
    justify-self: start;
  }

  .site-footer p {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }
}
