:root {
  --navy: #0b2239;
  --navy-soft: #17374f;
  --ivory: #fbf7f0;
  --sand: #e9ddc8;
  --gold: #c49a4a;
  --terracotta: #b9553d;
  --terracotta-dark: #9d422e;
  --white: #ffffff;
  --ink: #173047;
  --muted: #68737a;
  --line: rgba(11, 34, 57, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 24px 70px rgba(11, 34, 57, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--sand);
  color: var(--navy);
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

section,
footer {
  scroll-margin-top: 86px;
}

.section-shell {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 112px);
}

.eyebrow {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.91);
  border-bottom: 1px solid rgba(11, 34, 57, 0.09);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 84px;
  left: 0;
  padding: 0 clamp(22px, 5vw, 80px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
  width: clamp(184px, 16vw, 238px);
}

.brand img {
  height: auto;
  width: 100%;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 44px);
}

.main-nav a {
  color: #435765;
  font-size: 12px;
  position: relative;
}

.main-nav a::after {
  background: var(--terracotta);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.floating-contact {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  gap: 22px;
  justify-content: center;
  letter-spacing: 0.015em;
}

.header-cta {
  background: var(--terracotta);
  color: var(--white);
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  transition: background 200ms ease, transform 200ms ease;
}

.header-cta i,
.button i,
.floating-contact i {
  font-style: normal;
  transition: transform 200ms ease;
}

.header-cta:hover,
.button-primary:hover,
.floating-contact:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.header-cta:hover i,
.button:hover i,
.floating-contact:hover i {
  transform: translate(3px, -3px);
}

.hero {
  background: var(--ivory);
  min-height: min(880px, 100vh);
  overflow: hidden;
  padding-top: 84px;
  position: relative;
}

.hero-photo,
.hero-wash {
  bottom: 0;
  height: calc(100% - 84px);
  left: 0;
  position: absolute;
  right: 0;
  top: 84px;
  width: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 1) 0%, rgba(251, 247, 240, 0.98) 31%, rgba(251, 247, 240, 0.8) 47%, rgba(251, 247, 240, 0.08) 70%),
    linear-gradient(0deg, rgba(251, 247, 240, 0.94) 0%, transparent 24%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(min(880px, 100vh) - 84px);
  padding: clamp(88px, 9vw, 140px) clamp(24px, 7vw, 112px) 64px;
  position: relative;
  width: min(58%, 780px);
  z-index: 2;
}

.hero h1 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(58px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin: 0;
}

.hero h1 span {
  color: var(--terracotta);
  display: block;
  font-size: 0.82em;
  font-style: italic;
  line-height: 1.05;
}

.hero-lead {
  color: #4d5f69;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  transition: background 200ms ease, transform 200ms ease;
}

.button-primary {
  background: var(--terracotta);
  color: var(--white);
}

.secondary-link {
  border-bottom: 1px solid rgba(11, 34, 57, 0.35);
  color: var(--navy);
  font-size: 12px;
  padding: 10px 0;
}

.secondary-link span {
  color: var(--terracotta);
  margin-left: 10px;
}

.hero-trust {
  border-top: 1px solid rgba(11, 34, 57, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 48px;
  max-width: 610px;
  padding-top: 21px;
}

.hero-trust span {
  color: #56666e;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-trust span::before {
  color: var(--gold);
  content: "•";
  margin-right: 9px;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: clamp(44px, 8vw, 128px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  margin-bottom: clamp(52px, 6vw, 82px);
}

.section-intro h2,
.manifesto h2,
.process h2,
.criteria h2,
.faq h2,
.final-cta h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(43px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

.section-intro > p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  padding-top: 24px;
}

.section-intro.compact h2 {
  font-size: clamp(40px, 4.8vw, 68px);
}

.goals {
  background: var(--ivory);
}

.goal-grid {
  display: grid;
  gap: clamp(22px, 2.2vw, 36px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goal-card {
  background: var(--white);
  border: 1px solid rgba(11, 34, 57, 0.08);
  box-shadow: 0 14px 45px rgba(11, 34, 57, 0.04);
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.goal-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.goal-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.goal-image::after {
  background: linear-gradient(0deg, rgba(11, 34, 57, 0.34), transparent 38%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.goal-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.goal-card:hover .goal-image img {
  transform: scale(1.035);
}

.goal-image > span {
  bottom: 18px;
  color: var(--white);
  font-size: 11px;
  left: 22px;
  letter-spacing: 0.15em;
  position: absolute;
  z-index: 2;
}

.goal-body {
  padding: clamp(28px, 3.5vw, 48px);
}

.goal-body h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 41px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}

.goal-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 30px;
  max-width: 500px;
}

.goal-body a {
  color: var(--terracotta-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 13px;
}

.goal-body a span {
  transition: transform 180ms ease;
}

.goal-body a:hover span {
  transform: translate(3px, -3px);
}

.manifesto {
  align-items: center;
  background: var(--sand);
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: 0.62fr 1.38fr;
  overflow: hidden;
  padding: clamp(100px, 11vw, 170px) clamp(24px, 8vw, 132px);
  position: relative;
}

.manifesto::before {
  border: 1px solid rgba(196, 154, 74, 0.38);
  border-radius: 50%;
  content: "";
  height: 490px;
  left: -180px;
  position: absolute;
  top: -160px;
  width: 490px;
}

.manifesto-mark {
  color: rgba(11, 34, 57, 0.09);
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 176px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  position: relative;
}

.manifesto-copy {
  max-width: 850px;
  position: relative;
}

.manifesto-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.manifesto-copy > p:not(.eyebrow) {
  color: #4e5e67;
  font-size: 17px;
  line-height: 1.78;
  margin: 34px 0 28px;
  max-width: 720px;
}

.manifesto-copy strong {
  border-left: 3px solid var(--terracotta);
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.45;
  padding-left: 24px;
}

.privacy-promise {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(58px, 9vw, 138px);
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  overflow: hidden;
  position: relative;
}

.privacy-promise::after {
  border: 1px solid rgba(196, 154, 74, 0.3);
  border-radius: 50%;
  content: "";
  height: 440px;
  position: absolute;
  right: -250px;
  top: -230px;
  width: 440px;
}

.privacy-copy,
.privacy-principles {
  position: relative;
  z-index: 1;
}

.privacy-copy .eyebrow {
  color: var(--gold);
}

.privacy-copy h2 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
}

.privacy-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.78;
  margin: 34px 0 28px;
  max-width: 650px;
}

.privacy-copy strong {
  border-left: 3px solid var(--terracotta);
  color: var(--white);
  display: block;
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  padding-left: 24px;
}

.privacy-principles {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-card {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 10px 24px;
  grid-template-columns: 38px 1fr;
  min-height: 190px;
  padding: clamp(28px, 3vw, 42px);
  transition: background 220ms ease;
}

.privacy-card:last-child {
  border-bottom: 0;
}

.privacy-card:hover {
  background: rgba(255, 255, 255, 0.075);
}

.privacy-card > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding-top: 8px;
}

.privacy-card h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 35px);
  font-weight: 400;
  margin: 0;
}

.privacy-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  grid-column: 2;
  line-height: 1.72;
  margin: 7px 0 0;
}

.pillars {
  background: var(--ivory);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  border-right: 0;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(26px, 2.8vw, 40px);
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}

.pillar-card:last-child {
  border-right: 1px solid var(--line);
}

.pillar-card > span {
  color: rgba(196, 154, 74, 0.19);
  font-family: var(--serif);
  font-size: 148px;
  line-height: 0.75;
  position: absolute;
  right: -5px;
  top: 16px;
}

.pillar-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 400;
  margin: 178px 0 18px;
  position: relative;
}

.pillar-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
  margin: 0;
  position: relative;
}

.pillar-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  z-index: 2;
}

.process {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(480px, 1.05fr);
  min-height: 900px;
}

.process-photo {
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.process-photo::after {
  background: linear-gradient(0deg, rgba(11, 34, 57, 0.54), transparent 38%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.process-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.process-photo > span {
  bottom: 38px;
  color: var(--white);
  font-size: 10px;
  left: 42px;
  letter-spacing: 0.13em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.process-photo > span::before {
  color: var(--gold);
  content: "—";
  margin-right: 12px;
}

.process-copy {
  align-self: center;
  padding: clamp(90px, 9vw, 145px) clamp(40px, 7vw, 110px);
}

.process h2 {
  font-size: clamp(40px, 4.6vw, 66px);
}

.process-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 34px 1fr;
  padding: 24px 0;
}

.process-list li > span,
.criteria-list li > span,
.expectation-card > span {
  color: var(--terracotta);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding-top: 5px;
}

.process-list h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 7px;
}

.process-list p,
.process-close {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.process-close {
  background: var(--sand);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  margin-top: 28px;
  padding: 18px 20px;
}

.criteria {
  align-items: start;
  background: var(--ivory);
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
}

.criteria-copy {
  position: sticky;
  top: 122px;
}

.criteria h2 {
  font-size: clamp(44px, 5.3vw, 76px);
}

.criteria-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
  margin: 34px 0;
  max-width: 650px;
}

.criteria blockquote {
  border-left: 3px solid var(--terracotta);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.45;
  margin: 0;
  max-width: 630px;
  padding-left: 24px;
}

.criteria-list {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 18px 18px 0 var(--sand);
  list-style: none;
  margin: 0;
  padding: clamp(22px, 3vw, 42px);
}

.criteria-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 32px 1fr;
  padding: 22px 0;
}

.criteria-list li:last-child {
  border-bottom: 0;
}

.criteria-list p {
  color: #425660;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.expectations {
  background: var(--sand);
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.expectation-card {
  border-bottom: 1px solid rgba(11, 34, 57, 0.17);
  border-left: 1px solid rgba(11, 34, 57, 0.17);
  border-top: 1px solid rgba(11, 34, 57, 0.17);
  min-height: 290px;
  padding: 28px 24px;
}

.expectation-card:last-child {
  border-right: 1px solid rgba(11, 34, 57, 0.17);
}

.expectation-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.1;
  margin: 84px 0 18px;
}

.expectation-card p {
  color: #58656c;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.faq {
  background: var(--ivory);
  display: grid;
  gap: clamp(60px, 9vw, 135px);
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
}

.faq-heading {
  position: sticky;
  top: 122px;
}

.faq h2 {
  font-size: clamp(41px, 4.8vw, 68px);
}

.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
  margin: 30px 0 0;
  max-width: 500px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 20px;
  grid-template-columns: 32px 1fr 32px;
  list-style: none;
  min-height: 94px;
  padding: 20px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--gold);
  font-size: 10px;
}

.faq-list summary strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.35;
}

.faq-list summary i {
  color: var(--terracotta);
  font-size: 27px;
  font-style: normal;
  font-weight: 300;
  justify-self: end;
  transition: transform 220ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 52px 28px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
  margin: 0;
  max-width: 720px;
}

.final-cta {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.final-cta > img,
.final-wash {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
}

.final-wash {
  background: linear-gradient(90deg, rgba(251, 247, 240, 0.04) 26%, rgba(251, 247, 240, 0.7) 56%, rgba(251, 247, 240, 0.98) 78%);
}

.final-copy {
  margin-left: auto;
  padding: clamp(100px, 11vw, 160px) clamp(24px, 8vw, 132px) clamp(100px, 11vw, 160px) 40px;
  position: relative;
  width: min(53%, 760px);
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(48px, 5.6vw, 82px);
}

.final-copy > p:not(.eyebrow) {
  color: #4d5f69;
  font-size: 16px;
  line-height: 1.78;
  margin: 30px 0 34px;
  max-width: 610px;
}

.final-copy small {
  color: #5d6c73;
  display: block;
  font-size: 11px;
  line-height: 1.6;
  margin-top: 23px;
}

footer {
  background: var(--navy);
  color: var(--white);
  padding: 78px clamp(24px, 7vw, 112px) 30px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer-logo-wrap {
  background: var(--ivory);
  display: inline-flex;
  padding: 10px 14px;
  width: 218px;
}

.footer-brand p,
.footer-domain span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  letter-spacing: 0.09em;
  margin: 0;
  text-transform: uppercase;
}

.footer-domain {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-domain strong {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.footer-nav {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr;
}

.footer-nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--sand);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 35px;
  grid-template-columns: 1.4fr 0.6fr;
  margin-top: 58px;
  padding-top: 28px;
}

.legal p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.75;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.44);
  display: flex;
  font-size: 10px;
  gap: 30px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 24px;
}

.floating-contact {
  background: var(--terracotta);
  bottom: 22px;
  box-shadow: 0 14px 34px rgba(75, 28, 18, 0.22);
  color: var(--white);
  min-height: 50px;
  padding: 0 19px;
  position: fixed;
  right: 22px;
  transition: background 200ms ease, transform 200ms ease;
  z-index: 80;
}

.hero-reveal {
  animation: reveal-up 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
  transform: translateY(22px);
}

.hero-reveal-1 { animation-delay: 100ms; }
.hero-reveal-2 { animation-delay: 220ms; }
.hero-reveal-3 { animation-delay: 350ms; }
.hero-reveal-4 { animation-delay: 490ms; }

.scroll-reveal {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  .scroll-reveal {
    animation: scroll-reveal linear both;
    animation-range: entry 6% cover 27%;
    animation-timeline: view();
  }

  .scroll-reveal.delay-1 { animation-range: entry 10% cover 31%; }
  .scroll-reveal.delay-2 { animation-range: entry 14% cover 35%; }
  .scroll-reveal.delay-3 { animation-range: entry 18% cover 39%; }
  .scroll-reveal.delay-4 { animation-range: entry 22% cover 43%; }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-reveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-copy {
    width: min(64%, 720px);
  }

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

  .pillar-card:nth-child(2),
  .expectation-card:nth-child(2),
  .expectation-card:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .pillar-card:nth-child(n + 3),
  .expectation-card:nth-child(n + 3) {
    border-top: 0;
  }

  .expectation-card:last-child {
    border-top: 0;
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .process {
    grid-template-columns: minmax(330px, 0.8fr) minmax(440px, 1.2fr);
  }

  .criteria {
    gap: 68px;
  }

  .privacy-promise {
    gap: 64px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 74px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    width: 166px;
  }

  .header-cta {
    gap: 13px;
    min-height: 40px;
    padding: 0 14px;
  }

  .header-cta span {
    font-size: 0;
  }

  .header-cta span::after {
    content: "Conversar";
    font-size: 11px;
  }

  .floating-contact {
    display: none;
  }

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

  .hero-photo {
    height: min(62vh, 520px);
    inset: auto;
    object-position: 69% center;
    position: relative;
    width: 100%;
  }

  .hero-wash {
    display: none;
  }

  .hero-copy {
    min-height: 0;
    padding: 50px 24px 70px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 13.2vw, 64px);
  }

  .hero-trust {
    gap: 12px 20px;
  }

  .section-intro,
  .manifesto,
  .process,
  .criteria,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
    gap: 36px;
  }

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

  .manifesto {
    gap: 44px;
  }

  .manifesto-mark {
    font-size: clamp(64px, 19vw, 116px);
  }

  .process-photo {
    min-height: 620px;
  }

  .process-copy {
    padding: 86px 24px;
  }

  .criteria-copy,
  .faq-heading {
    position: static;
  }

  .criteria-list {
    box-shadow: 12px 12px 0 var(--sand);
  }

  .privacy-card {
    min-height: 170px;
  }

  .final-cta {
    background: var(--ivory);
    min-height: 0;
  }

  .final-cta > img {
    height: min(58vh, 500px);
    inset: auto;
    object-position: 30% center;
    position: relative;
    width: 100%;
  }

  .final-wash {
    display: none;
  }

  .final-copy {
    padding: 62px 24px 78px;
    width: 100%;
  }

  .footer-main,
  .legal {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 40px;
  }

  .legal {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-photo {
    height: 390px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .secondary-link {
    align-self: flex-start;
  }

  .goal-body {
    padding: 28px 24px 34px;
  }

  .pillar-grid,
  .expectation-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card:nth-child(2),
  .expectation-card,
  .expectation-card:nth-child(2),
  .expectation-card:nth-child(4),
  .expectation-card:last-child {
    border-right: 1px solid var(--line);
    grid-column: auto;
  }

  .pillar-card:nth-child(n + 2),
  .expectation-card:nth-child(n + 2) {
    border-top: 0;
  }

  .pillar-card {
    min-height: 300px;
  }

  .pillar-card h3 {
    margin-top: 135px;
  }

  .expectation-card {
    min-height: 250px;
  }

  .expectation-card h3 {
    margin-top: 60px;
  }

  .process-photo {
    min-height: 480px;
  }

  .process-photo > span {
    bottom: 26px;
    left: 22px;
  }

  .criteria-list {
    box-shadow: 8px 8px 0 var(--sand);
    padding: 18px;
  }

  .privacy-card {
    grid-template-columns: 30px 1fr;
    min-height: 0;
    padding: 26px 22px;
  }

  .faq-list summary {
    gap: 12px;
    grid-template-columns: 26px 1fr 24px;
  }

  .faq-answer {
    padding-left: 38px;
    padding-right: 10px;
  }

  .final-cta > img {
    height: 390px;
  }

  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .floating-contact {
    bottom: 14px;
    min-height: 48px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
