:root {
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --oat: #e8decd;
  --sand: #d4c3a6;
  --wheat: #b89356;
  --rust: #aa5031;
  --rust-dark: #85391f;
  --brown: #684735;
  --espresso: #302720;
  --sage: #687264;
  --muted: #776b61;
  --line: rgba(70, 50, 35, 0.16);
  --shadow: 0 24px 70px rgba(62, 43, 28, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
}

.font-lora {
  --serif: "Lora", Georgia, serif;
}

.font-lora .hero h1 {
  font-weight: 500;
  letter-spacing: -0.048em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(88, 61, 41, 0.055) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--espresso);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.announcement {
  background: var(--espresso);
  color: #fbf5e9;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.announcement a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 6px 20px;
  gap: 10px;
}

.announcement span {
  color: #ddb982;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, 0.94);
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr 176px;
  align-items: center;
  min-height: 89px;
  gap: 30px;
}

.wordmark {
  width: max-content;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.wordmark em {
  color: var(--rust);
  font-size: 0.72em;
  font-weight: 500;
}

.wordmark small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  color: #554a40;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

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

.desktop-nav .nav-current {
  color: var(--rust);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: var(--rust);
  color: white;
  box-shadow: 0 12px 28px rgba(133, 57, 31, 0.18);
}

.button-solid:hover {
  background: var(--rust-dark);
}

.button-small {
  min-height: 43px;
  padding: 10px 16px;
}

.button-outline {
  border-color: var(--brown);
  color: var(--brown);
}

.button-outline:hover {
  background: var(--brown);
  color: white;
}

.button-text {
  min-height: 48px;
  padding-right: 5px;
  padding-left: 5px;
  color: var(--brown);
}

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

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.play-icon svg {
  width: 18px;
  fill: currentColor;
}

.mobile-menu {
  display: none;
}

.hero {
  overflow: hidden;
  padding: clamp(68px, 8vw, 114px) 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 5.4vw, 76px);
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: #66594e;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.button-row {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 20px;
}

.hero-promises {
  display: flex;
  margin: 35px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.hero-promises li {
  display: flex;
  align-items: center;
}

.hero-promises li + li::before {
  width: 3px;
  height: 3px;
  margin: 0 13px;
  border-radius: 50%;
  background: var(--wheat);
  content: "";
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.04;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 11px rgba(255, 255, 255, 0.07);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experiment-note {
  position: absolute;
  right: -35px;
  bottom: -38px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  width: min(360px, 76%);
  min-height: 105px;
  padding: 21px 25px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(57, 39, 25, 0.16);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.experiment-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
}

.note-number {
  color: var(--wheat);
  font-family: var(--serif);
  font-size: 31px;
}

.sun-stamp {
  position: absolute;
  top: -31px;
  left: -38px;
  display: grid;
  place-items: center;
  width: 93px;
  height: 93px;
  border: 1px solid rgba(104, 71, 53, 0.28);
  border-radius: 50%;
  background: rgba(247, 243, 235, 0.92);
  color: var(--brown);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.sun-stamp::before,
.sun-stamp::after {
  position: absolute;
  width: 113px;
  height: 1px;
  background: rgba(104, 71, 53, 0.18);
  content: "";
  transform: rotate(45deg);
}

.sun-stamp::after {
  transform: rotate(-45deg);
}

.sun-stamp span,
.sun-stamp strong {
  position: relative;
  z-index: 1;
  background: var(--cream);
}

.sun-stamp strong {
  color: var(--rust);
  font-size: 15px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.64);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 105px;
  padding: 20px clamp(18px, 3vw, 40px);
}

.proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-number {
  color: var(--wheat);
  font-family: var(--serif);
  font-size: 21px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.proof-grid strong {
  display: block;
  color: var(--brown);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  padding: clamp(86px, 10vw, 140px) 0;
}

.section h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  align-items: end;
  margin-bottom: 52px;
  gap: clamp(48px, 8vw, 110px);
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.start-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.start-card:hover {
  border-color: rgba(170, 80, 49, 0.5);
  box-shadow: 0 20px 44px rgba(62, 43, 28, 0.1);
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.42;
}

.card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.card-step {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--paper);
  color: var(--rust);
  font-family: var(--serif);
  font-size: 18px;
}

.card-copy {
  padding: 29px 29px 30px;
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--wheat);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-copy > p:not(.card-kicker) {
  min-height: 68px;
  margin: 15px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.text-link {
  color: var(--brown);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 5px;
  color: var(--rust);
}

.feature-section {
  background: var(--oat);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.feature-media {
  position: relative;
  min-height: 550px;
}

.feature-media::before {
  position: absolute;
  inset: 38px -24px -24px 38px;
  border: 1px solid rgba(104, 71, 53, 0.22);
  content: "";
}

.feature-media img {
  position: relative;
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13px 17px;
  background: var(--paper);
  color: var(--brown);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.round-play {
  position: absolute;
  right: -31px;
  bottom: 37px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 18px 45px rgba(97, 41, 22, 0.26);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.round-play:hover {
  background: var(--rust-dark);
  transform: scale(1.04);
}

.round-play svg {
  width: 31px;
  fill: currentColor;
}

.feature-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: #62564d;
  font-size: 15px;
  line-height: 1.9;
}

.experiment-details {
  margin: 32px 0 35px;
  border-top: 1px solid rgba(104, 71, 53, 0.22);
}

.experiment-details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(104, 71, 53, 0.22);
  gap: 20px;
}

.experiment-details dt {
  color: var(--wheat);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experiment-details dd {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 15px;
}

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

.method-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 11vw, 145px);
}

.method-intro {
  position: relative;
}

.method-intro::after {
  position: absolute;
  top: 0;
  right: calc(clamp(70px, 11vw, 145px) / -2);
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.method-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.signature {
  margin-top: 35px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 12px 0 32px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.method-list li + li {
  padding-top: 32px;
}

.method-list > li > span {
  color: var(--wheat);
  font-family: var(--serif);
  font-size: 30px;
}

.method-list h3 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.method-list p {
  max-width: 520px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.follow-section {
  padding: clamp(82px, 9vw, 125px) 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.follow-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  margin-bottom: 43px;
  gap: clamp(45px, 8vw, 110px);
}

.follow-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.follow-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.follow-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.follow-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  min-width: 0;
  min-height: 260px;
  padding: 35px 30px;
  gap: 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.follow-card + .follow-card {
  border-left: 1px solid var(--line);
}

.follow-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.follow-youtube {
  background: var(--paper);
}

.follow-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rust);
}

.follow-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.follow-copy {
  display: block;
}

.follow-copy small {
  display: block;
  min-height: 28px;
  color: var(--wheat);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.follow-copy strong {
  display: block;
  margin-top: 12px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.follow-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.follow-action {
  grid-column: 2;
  align-self: end;
  color: var(--brown);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.follow-action span {
  margin-left: 5px;
  color: var(--rust);
}

.guide-section {
  padding-top: 0;
  background: var(--paper);
}

.guide-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  min-height: 480px;
  overflow: hidden;
  padding: clamp(55px, 7vw, 84px);
  background: var(--brown);
  box-shadow: var(--shadow);
  color: #f9f0e4;
  gap: clamp(55px, 8vw, 110px);
}

.guide-number {
  position: absolute;
  top: -90px;
  left: -20px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--serif);
  font-size: 470px;
  font-weight: 700;
  line-height: 1;
}

.guide-copy,
.guide-form-wrap {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #e1bc82;
}

.guide-card h2 {
  color: #fff8ed;
  font-size: clamp(38px, 4vw, 56px);
}

.guide-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: #e7d9c9;
  font-size: 14px;
  line-height: 1.85;
}

.guide-copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding: 0;
  color: #f1e5d6;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
  gap: 12px 23px;
}

.guide-copy li::before {
  margin-right: 8px;
  color: #e1bc82;
  content: "✓";
}

.guide-form-wrap {
  align-self: center;
  padding: 32px;
  background: var(--paper);
  color: var(--espresso);
}

.form-title {
  margin: 0 0 19px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.guide-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-form input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--espresso);
  font-size: 14px;
}

.guide-form input:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(170, 80, 49, 0.12);
}

.guide-form button {
  width: 100%;
  min-height: 55px;
  margin-top: 10px;
  border: 0;
  border-radius: 0;
  background: var(--rust);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 180ms ease;
}

.guide-form button:hover {
  background: var(--rust-dark);
}

.privacy-note {
  margin: 12px 0 0;
  color: #897b70;
  font-size: 9px;
  line-height: 1.55;
}

.kit-credit {
  display: block;
  width: max-content;
  margin: 12px auto 0;
  color: #96887c;
  font-size: 9px;
}

.formkit-alert {
  margin: 0 0 10px;
  padding: 0;
  font-size: 11px;
  list-style: none;
}

.formkit-alert-error:not(:empty) {
  padding: 9px 11px;
  background: #fff0ea;
  color: #862f18;
}

.formkit-spinner {
  display: none;
}

.formkit-form[data-active] .formkit-spinner {
  display: inline-flex;
  margin-right: 7px;
  gap: 3px;
}

.formkit-spinner > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.formkit-form.formkit-submitted {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.tools-section {
  background: var(--cream);
}

.tools-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tools-image {
  position: relative;
  margin: 0;
  padding: 35px 42px 35px 0;
  border-right: 1px solid var(--line);
}

.tools-image img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.tools-image figcaption {
  position: absolute;
  right: 42px;
  bottom: 35px;
  left: 0;
  padding: 20px 24px;
  background: rgba(48, 39, 32, 0.88);
  color: #f5eadc;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
}

.tool-list a {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 185px;
  padding: 29px 0 29px 42px;
  gap: 24px;
  transition: background 180ms ease;
}

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

.tool-list a:hover {
  background: rgba(255, 253, 248, 0.55);
}

.tool-number {
  color: var(--wheat);
  font-family: var(--serif);
  font-size: 26px;
}

.tool-copy {
  display: block;
}

.tool-label {
  display: block;
  margin-bottom: 6px;
  color: var(--rust);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tool-copy strong {
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.tool-copy small {
  display: block;
  max-width: 460px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.tool-action {
  min-width: 123px;
  color: var(--brown);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tool-action span {
  margin-left: 5px;
  color: var(--rust);
}

.shelf-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  gap: 40px;
}

.shelf-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.shelf-row strong {
  color: var(--brown);
}

.shelf-links {
  display: flex;
  gap: 29px;
}

.shelf-links a {
  color: var(--brown);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shelf-links span {
  margin-left: 4px;
  color: var(--rust);
}

.affiliate-note {
  max-width: 900px;
  margin: 20px 0 0;
  color: #8c8076;
  font-size: 9px;
  line-height: 1.6;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 650px);
  align-items: center;
  justify-content: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-portrait {
  position: relative;
}

.about-portrait::before {
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--line);
  content: "";
}

.about-portrait img {
  position: relative;
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

.about-copy h2 {
  font-size: clamp(39px, 4vw, 57px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-story-link {
  margin-top: 29px;
}

.social-row {
  display: flex;
  margin-top: 31px;
  gap: 28px;
}

.social-row a {
  color: var(--brown);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-row span {
  margin-left: 4px;
  color: var(--rust);
}

.subscribe-cta {
  padding: clamp(65px, 7vw, 92px) 0;
  background: var(--brown);
  color: #f8eee2;
}

.subscribe-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.subscribe-inner h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.subscribe-actions {
  display: grid;
  gap: 17px;
}

.button-light {
  background: #fff8ee;
  color: var(--brown);
}

.button-light:hover {
  background: white;
}

.subscribe-email-link {
  color: #e9d8c7;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.subscribe-email-link span {
  margin-left: 4px;
  color: #e1bc82;
}

.site-footer {
  padding: 58px 0;
  background: var(--espresso);
  color: #d9cbbd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer-wordmark {
  color: #fff6e9;
}

.footer-wordmark small {
  color: #a99582;
}

.footer-grid > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-grid .copyright {
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* About page */
.about-hero {
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(80px, 9vw, 125px);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.about-hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: #675a50;
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 300;
  line-height: 1.8;
}

.about-hero-portrait {
  position: relative;
  margin: 0 20px 0 0;
}

.about-portrait-frame {
  position: relative;
}

.about-portrait-frame::before {
  position: absolute;
  inset: 24px -20px -20px 24px;
  border: 1px solid var(--line);
  content: "";
}

.about-portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center 20%;
}

.about-hero-portrait figcaption {
  position: absolute;
  right: -16px;
  bottom: 28px;
  display: grid;
  width: min(310px, 80%);
  padding: 23px 27px;
  background: var(--paper);
  box-shadow: var(--shadow);
  gap: 7px;
}

.about-hero-portrait figcaption span {
  color: var(--rust);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-portrait figcaption strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.35;
}

.about-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-proof-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 118px;
  padding: 27px clamp(22px, 3vw, 40px);
  gap: 3px 15px;
}

.about-proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.about-proof-grid span {
  grid-row: 1 / 3;
  color: var(--wheat);
  font-family: var(--serif);
  font-size: 20px;
}

.about-proof-grid strong {
  color: var(--brown);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-proof-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

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

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(60px, 10vw, 145px);
}

.about-story-heading {
  position: sticky;
  top: 45px;
}

.about-story-heading h2,
.about-bakes-heading h2,
.about-video-copy h2,
.about-connect-grid h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 4.3vw, 61px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-story-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.about-story-copy p {
  margin: 0 0 23px;
}

.about-story-copy .story-lead {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.5;
}

.about-story-copy blockquote {
  margin: 42px 0 0;
  padding: 27px 0 4px 30px;
  border-left: 2px solid var(--rust);
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-style: italic;
  line-height: 1.4;
}

.about-bakes-section {
  background: var(--cream);
}

.about-bakes-heading {
  align-items: end;
}

.about-bake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-bake-grid article {
  padding: 0 24px 35px;
}

.about-bake-grid article + article {
  border-left: 1px solid var(--line);
}

.about-bake-grid img {
  width: calc(100% + 48px);
  max-width: none;
  height: 245px;
  margin: 0 -24px 28px;
  object-fit: cover;
}

.about-bake-grid span {
  color: var(--wheat);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-bake-grid h3 {
  margin: 10px 0 12px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.about-bake-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.about-method-section {
  background: var(--brown);
  color: #f7ede1;
}

.about-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: start;
  gap: clamp(65px, 10vw, 145px);
}

.about-method-intro h2 {
  max-width: 570px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(43px, 4.5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-method-intro > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: #decbbb;
  font-size: 14px;
  line-height: 1.85;
}

.about-method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.about-method-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 20px;
}

.about-method-list > li > span {
  color: #dab983;
  font-family: var(--serif);
  font-size: 19px;
}

.about-method-list h3 {
  margin: 0 0 7px;
  color: white;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.about-method-list p {
  margin: 0;
  color: #d9c8b9;
  font-size: 13px;
  line-height: 1.7;
}

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

.about-video-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-video-image {
  position: relative;
  display: block;
}

.about-video-image::before {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--line);
  content: "";
}

.about-video-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.about-video-image .round-play {
  right: -16px;
  bottom: 32px;
}

.about-video-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-guide-section {
  padding-top: clamp(80px, 9vw, 125px);
  padding-bottom: clamp(80px, 9vw, 125px);
  background: var(--brown);
}

.about-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(65px, 10vw, 135px);
}

.about-guide-grid h2 {
  max-width: 650px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(45px, 4.8vw, 66px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about-guide-grid > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: #ddcbbb;
  font-size: 14px;
  line-height: 1.85;
}

.about-connect-section {
  background: var(--cream);
}

.about-connect-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.about-connect-links {
  border-top: 1px solid var(--line);
}

.about-connect-links a {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  transition: color 160ms ease, padding 160ms ease;
}

.about-connect-links a:hover {
  padding-left: 8px;
  color: var(--rust);
}

.about-connect-links strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.about-connect-links span {
  color: var(--muted);
  font-size: 12px;
}

.about-contact {
  padding: clamp(70px, 8vw, 105px) 0;
  background: var(--espresso);
  color: #e9dacc;
}

.about-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.about-contact h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(40px, 4.3vw, 59px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.about-contact-inner > div:last-child > p {
  margin: 0 0 28px;
  color: #d2c2b4;
  font-size: 13px;
  line-height: 1.8;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(170, 80, 49, 0.35);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 190px 1fr 160px;
    gap: 15px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(45px, 6vw, 62px);
  }

  .experiment-note {
    right: -10px;
  }

  .tool-list a {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .tool-action {
    grid-column: 2;
  }

  .start-grid,
  .about-bake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-bake-grid article:nth-child(3) {
    border-left: 0;
  }

  .about-bake-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 55px;
  }

  .about-bake-grid img {
    height: 210px;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 75px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    place-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    cursor: pointer;
    list-style: none;
    gap: 4px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--brown);
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 36px));
    padding: 13px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--brown);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    background: var(--rust);
    color: white;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .feature-grid,
  .method-layout,
  .guide-card,
  .tools-layout,
  .about-grid,
  .subscribe-inner,
  .about-hero-grid,
  .about-story-grid,
  .about-method-grid,
  .about-video-grid,
  .about-guide-grid,
  .about-connect-grid,
  .about-contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    margin: 25px 13px 0 22px;
  }

  .hero-image-wrap {
    aspect-ratio: 1.35;
  }

  .hero h1 {
    font-size: clamp(50px, 10vw, 68px);
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .proof-grid > div {
    min-height: 78px;
    padding: 14px 0;
  }

  .proof-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .start-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .start-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .card-image {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .feature-grid {
    gap: 80px;
  }

  .feature-media {
    min-height: 470px;
  }

  .feature-media img {
    height: 470px;
  }

  .feature-copy {
    max-width: 610px;
  }

  .method-layout {
    gap: 55px;
  }

  .follow-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

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

  .follow-card {
    min-height: 0;
  }

  .follow-card + .follow-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-intro::after {
    top: auto;
    right: 0;
    bottom: -28px;
    width: 100%;
    height: 1px;
  }

  .guide-card {
    gap: 50px;
  }

  .guide-form-wrap {
    max-width: 520px;
  }

  .tools-image {
    padding: 0 0 35px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tools-image figcaption {
    right: 0;
    bottom: 35px;
  }

  .tool-list a {
    padding-left: 0;
  }

  .shelf-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .about-grid {
    justify-items: start;
  }

  .about-hero-copy {
    max-width: 700px;
  }

  .about-hero-portrait {
    width: min(520px, calc(100% - 20px));
    margin-top: 15px;
  }

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

  .about-proof-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-story-heading {
    position: static;
  }

  .about-bake-grid {
    grid-template-columns: 1fr;
  }

  .about-bake-grid article {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 30px;
  }

  .about-bake-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-bake-grid img {
    grid-row: 1 / 5;
    width: 100%;
    height: 100%;
    min-height: 250px;
    margin: 0;
  }

  .about-method-grid,
  .about-video-grid,
  .about-guide-grid,
  .about-connect-grid,
  .about-contact-inner {
    gap: 50px;
  }

  .subscribe-inner {
    gap: 35px;
  }

  .subscribe-actions {
    max-width: 420px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: right;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 500px);
  }

  .announcement a {
    align-items: flex-start;
    min-height: 47px;
    padding: 9px 14px;
    line-height: 1.35;
    text-align: left;
  }

  .announcement span {
    flex: 0 0 auto;
  }

  .header-inner {
    min-height: 70px;
  }

  .wordmark {
    font-size: 22px;
  }

  .hero {
    padding: 55px 0 75px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.3vw, 58px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 15px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
    gap: 8px;
  }

  .button-text {
    justify-content: flex-start;
  }

  .hero-promises {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-promises li + li::before {
    display: none;
  }

  .hero-visual {
    margin-top: 33px;
  }

  .hero-image-wrap {
    aspect-ratio: 1.05;
  }

  .sun-stamp {
    top: -27px;
    left: -15px;
    width: 76px;
    height: 76px;
  }

  .sun-stamp::before,
  .sun-stamp::after {
    width: 90px;
  }

  .experiment-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 17px);
    margin: -22px 0 0 17px;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .start-card {
    display: block;
  }

  .card-image {
    aspect-ratio: 1.38;
  }

  .card-copy {
    padding: 25px 24px 27px;
  }

  .card-copy > p:not(.card-kicker) {
    min-height: auto;
  }

  .feature-grid {
    gap: 62px;
  }

  .feature-media {
    min-height: 390px;
    margin-right: 12px;
  }

  .feature-media::before {
    inset: 22px -13px -13px 22px;
  }

  .feature-media img {
    height: 390px;
  }

  .round-play {
    right: -10px;
    bottom: 25px;
    width: 68px;
    height: 68px;
  }

  .experiment-details > div {
    grid-template-columns: 82px 1fr;
  }

  .method-list li {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .follow-section {
    padding: 75px 0;
  }

  .follow-heading {
    margin-bottom: 31px;
  }

  .follow-card {
    grid-template-columns: 42px 1fr;
    padding: 27px 20px;
    gap: 16px;
  }

  .follow-icon {
    width: 42px;
    height: 42px;
  }

  .follow-copy small {
    min-height: 0;
  }

  .guide-section {
    padding-top: 0;
  }

  .guide-card {
    min-height: 0;
    margin: 0 -14px;
    padding: 54px 25px 28px;
    gap: 38px;
  }

  .guide-number {
    top: -18px;
    font-size: 260px;
  }

  .guide-form-wrap {
    padding: 25px 20px;
  }

  .guide-copy ul {
    display: grid;
  }

  .tools-image img {
    min-height: 390px;
  }

  .tools-image figcaption {
    padding: 16px 18px;
    font-size: 12px;
  }

  .tool-list a {
    grid-template-columns: 39px 1fr;
    min-height: 0;
    padding: 26px 0;
    gap: 13px;
  }

  .tool-action {
    margin-top: 4px;
  }

  .shelf-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .about-portrait img {
    width: 220px;
    height: 285px;
  }

  .about-hero {
    padding: 60px 0 85px;
  }

  .about-hero-copy h1 {
    font-size: clamp(43px, 12.5vw, 57px);
  }

  .about-hero-lede {
    margin-top: 22px;
    font-size: 15px;
  }

  .about-hero-portrait {
    width: calc(100% - 14px);
    margin-top: 26px;
  }

  .about-portrait-frame::before {
    inset: 14px -14px -14px 14px;
  }

  .about-hero-portrait figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    margin: -25px 0 0 20px;
  }

  .about-proof-grid > div {
    min-height: 96px;
    padding: 22px 8px;
  }

  .about-story-heading h2,
  .about-bakes-heading h2,
  .about-video-copy h2,
  .about-connect-grid h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .about-story-copy .story-lead {
    font-size: 22px;
  }

  .about-story-copy blockquote {
    margin-top: 32px;
    padding: 20px 0 0 20px;
    font-size: 25px;
  }

  .about-bake-grid article {
    display: block;
    padding: 0 20px 29px;
  }

  .about-bake-grid img {
    width: calc(100% + 40px);
    height: 230px;
    min-height: 0;
    margin: 0 -20px 25px;
  }

  .about-method-intro h2,
  .about-guide-grid h2,
  .about-contact h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .about-video-image {
    margin-right: 13px;
  }

  .about-video-image::before {
    inset: 13px -13px -13px 13px;
  }

  .about-video-image .round-play {
    right: -11px;
  }

  .about-guide-section {
    padding: 70px 0 35px;
  }

  .about-guide-grid {
    gap: 38px;
  }

  .about-guide-grid .guide-form-wrap {
    margin: 0 -3px;
  }

  .about-connect-links a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .about-contact {
    padding: 65px 0;
  }

  .social-row {
    flex-wrap: wrap;
    gap: 15px 24px;
  }

  .subscribe-cta {
    padding: 60px 0;
  }

  .subscribe-inner h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 23px;
  }

  .copyright {
    text-align: left;
  }
}

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

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