:root {
  --ink: #37465A;
  --muted: #6f7884;
  --paper: #ffffff;
  --soft: #fbfbfb;
  --pale: #F0F3F5;
  --sage: #C5CEC5;
  --accent: #A3BAC6;
  --line: rgba(55, 70, 90, 0.18);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--sage);
  border-bottom: 0;
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: 620px;
}

.brand-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(55, 70, 90, 0.86);
}

.brand-subtitle::before {
  content: "";
  width: 1px;
  height: 1.2em;
  background: currentColor;
  opacity: 0.42;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  color: var(--ink);
}

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

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(55, 70, 90, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(55, 70, 90, 0.86) 0%, rgba(55, 70, 90, 0.7) 38%, rgba(55, 70, 90, 0.1) 74%),
    url("assets/nadine-portrait.jpg") 92% 38% / cover;
  color: #fff;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(55, 70, 90, 0.72), rgba(55, 70, 90, 0.18)),
    var(--hero-image) var(--hero-position, center) / cover;
  color: #fff;
}

.page-hero .container {
  padding: 86px 0;
}

.page-hero .eyebrow {
  color: var(--pale);
}

.page-hero h1 {
  max-width: 860px;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.hero h1,
.hero .lead {
  max-width: 540px;
}

.hero h1 {
  max-width: 520px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.hero .eyebrow {
  color: var(--pale);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 300;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

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

.hero-actions .secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 92px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section.soft {
  background: var(--soft);
}

.podcast-section {
  background: var(--pale);
  border-top: 1px solid rgba(55, 70, 90, 0.12);
  border-bottom: 1px solid rgba(55, 70, 90, 0.12);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.intro-block {
  max-width: 820px;
}

.intro-block h2 {
  max-width: 760px;
}

.intro-block p {
  max-width: 760px;
}

.text-block {
  max-width: 820px;
}

.text-block p {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(55, 70, 90, 0.13);
  border-radius: 6px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(243, 245, 242, 0.98), rgba(255, 255, 255, 0.98) 62%),
    #fff;
  box-shadow: 0 16px 36px rgba(55, 70, 90, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto 26px 22px auto;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.62;
}

.card:hover {
  border-color: rgba(55, 70, 90, 0.24);
  box-shadow: 0 20px 46px rgba(55, 70, 90, 0.1);
  transform: translateY(-3px);
}

.card p:last-child {
  margin-bottom: 0;
}

.grid .card:nth-child(2n),
.pricing .card:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(197, 206, 197, 0.25), rgba(255, 255, 255, 0.98) 62%),
    #fff;
}

.grid .card:nth-child(3n),
.pricing .card:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(163, 186, 198, 0.22), rgba(255, 255, 255, 0.98) 62%),
    #fff;
}

.benefit-grid .card {
  display: grid;
  gap: 16px;
  align-items: start;
  justify-items: start;
  min-height: 190px;
  padding: 34px 30px 32px;
  text-align: left;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 22px rgba(55, 70, 90, 0.08);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid .card > span:last-child {
  max-width: 260px;
}

.offer-grid .card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.offer-grid .card h3 {
  margin-top: 2px;
}

.card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.offer-grid .card p {
  margin-top: 0;
}

.offer-grid .card a {
  margin-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.portrait {
  border-radius: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact-portrait {
  object-position: center 35%;
}

.image-band {
  min-height: 440px;
  background: url("assets/nature.jpg") center / cover;
}

.logo-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 34px;
  align-items: center;
}

.logos img {
  max-height: 68px;
  object-fit: contain;
  margin: 0 auto;
  filter: none;
  opacity: 1;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
}

.testimonial {
  display: grid;
  grid-template-columns: 240px 126px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 190px;
  background: var(--soft);
  border: 0;
  box-shadow: none;
  flex: 0 0 100%;
}

.testimonial::before {
  display: none;
}

.testimonial:hover {
  transform: none;
  box-shadow: none;
}

.testimonial img {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent);
  background: var(--pale);
}

.testimonial img.testimonial-icon {
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

.testimonial-initial {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--pale);
  font-size: 40px;
  font-weight: 300;
  color: var(--ink);
}

.testimonial-meta {
  text-align: right;
}

.testimonial-meta strong {
  display: block;
  font-weight: 700;
}

.testimonial blockquote,
.quote {
  font-size: 17px;
  margin: 0;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--ink);
}

.quote strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
}

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

.price {
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0;
}

.investment-note {
  margin: 24px 0 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.investment-note h3 {
  margin-bottom: 10px;
}

.investment-note p {
  max-width: none;
  margin: 0;
}

.list {
  padding-left: 20px;
}

.list li {
  margin: 8px 0;
}

.plain-list {
  list-style: none;
  padding-left: 24px;
}

.course-img {
  border-radius: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.podcast {
  max-width: 900px;
}

.podcast-label {
  margin-top: 28px;
}

.podcast-embed {
  display: block;
  width: 100%;
  border: 0;
  background: var(--paper);
}

.privacy-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(680px, calc(100% - 32px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(55, 70, 90, 0.15);
}

.privacy-notice p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.privacy-notice-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.privacy-notice .button {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

.tracking-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(500px, calc(100% - 32px));
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(14, 24, 38, 0.14);
}

.tracking-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.tracking-notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tracking-notice-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.tracking-notice .button {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-box .card {
  padding: 22px 24px;
}

.contact-box h3 {
  font-size: 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-card .card-icon {
  margin-bottom: 0;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: clamp(38px, 5vw, 54px);
  color: var(--ink);
}

.legal h2 {
  margin-top: 40px;
  font-size: 30px;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.reset-page {
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(270deg, rgba(55, 70, 90, 0.88) 0%, rgba(55, 70, 90, 0.74) 42%, rgba(55, 70, 90, 0.16) 78%),
    url("assets/nadine-portrait.jpg") 92% 38% / cover;
  color: #fff;
}

.reset-page .eyebrow {
  color: var(--pale);
}

.reset-card {
  max-width: 760px;
  margin-left: auto;
  margin-right: max(16px, calc((100vw - 1120px) / 2));
  text-align: right;
}

.reset-card h1 {
  max-width: 650px;
  margin-left: auto;
  font-size: clamp(48px, 8vw, 86px);
}

.reset-card .lead {
  max-width: 640px;
  margin-left: auto;
}

.reset-card .button {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 14px 32px rgba(14, 24, 38, 0.24);
}

.reset-info {
  max-width: 640px;
  margin: 20px 0 8px auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(14, 24, 38, 0.18);
  backdrop-filter: blur(4px);
  text-align: left;
}

.reset-info p {
  margin: 0;
}

.reset-info p + p {
  margin-top: 8px;
}

.reset-info strong {
  font-weight: 500;
}

.reset-expect {
  max-width: 640px;
  margin: 20px 0 8px auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
}

.reset-expect p {
  margin: 0;
}

.reset-expect strong {
  display: block;
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 500;
}

.reset-expect p + p {
  margin-top: 8px;
}

.reset-expect ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 20px;
  padding-right: 0;
  direction: ltr;
}

.reset-expect li {
  padding-left: 2px;
  padding-right: 0;
  direction: ltr;
}

.reset-expect .reset-signoff {
  margin-top: 18px;
}

.reset-bottom-cta {
  margin-top: 18px;
}

.reset-form-card {
  max-width: 780px;
}

.reset-form {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 24px 0 0 auto;
  text-align: left;
}

.reset-form label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.reset-form input[type="text"],
.reset-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.reset-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.reset-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 4px;
  font-size: 13px;
  line-height: 1.45;
}

.reset-form .consent input {
  margin-top: 3px;
}

.reset-form .consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-field {
  display: none;
}

.form-message {
  margin: 4px 0 0;
  font-size: 14px;
}

.error-message {
  color: #fff;
}

.reset-success {
  max-width: 560px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(14, 24, 38, 0.18);
}

.reset-success h2 {
  margin-bottom: 10px;
  color: #fff;
}

.reset-success p:last-child {
  margin-bottom: 0;
}

.small-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: inherit;
  margin-left: 16px;
}

.footer-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(197, 206, 197, 0.94);
  }

  .nav {
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 0;
    padding: 10px 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(260px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    font-size: 15px;
    white-space: normal;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(55, 70, 90, 0.14);
    box-shadow: 0 18px 45px rgba(55, 70, 90, 0.16);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
    text-decoration: none;
  }

  .nav-links a + a {
    border-top: 1px solid rgba(55, 70, 90, 0.1);
  }

  .brand {
    display: block;
    max-width: calc(100% - 58px);
    font-size: 18px;
    line-height: 1.18;
  }

  .brand-subtitle {
    display: block;
    max-width: 320px;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.25;
    color: rgba(55, 70, 90, 0.82);
  }

  .brand-subtitle::before {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(55, 70, 90, 0.08) 0%, rgba(55, 70, 90, 0.38) 44%, rgba(55, 70, 90, 0.94) 100%),
      url("assets/nadine-portrait.jpg") 55% -56px / auto 108% no-repeat;
  }

  .hero-inner {
    padding: 96px 0 40px;
  }

  .hero h1 {
    max-width: 410px;
    font-size: clamp(42px, 8vw, 58px);
  }

  .hero .lead {
    max-width: 420px;
    font-size: 20px;
  }

  .page-hero {
    min-height: 620px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(55, 70, 90, 0.12) 0%, rgba(55, 70, 90, 0.48) 48%, rgba(55, 70, 90, 0.94) 100%),
      var(--hero-image) var(--mobile-hero-position, var(--hero-position, center)) / cover;
  }

  .page-hero .container {
    padding: 64px 0 58px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 48px);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .page-hero .lead {
    max-width: 100%;
    font-size: 19px;
  }

  .reset-page {
    position: relative;
    min-height: calc(100vh - 116px);
    overflow: hidden;
    background: var(--ink);
  }

  .reset-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 360px;
    background:
      linear-gradient(180deg, rgba(55, 70, 90, 0) 0%, rgba(55, 70, 90, 0) 62%, rgba(55, 70, 90, 0.42) 86%, rgba(55, 70, 90, 1) 100%),
      url("assets/nadine-portrait.jpg") 55% top / auto 340px no-repeat;
    pointer-events: none;
  }

  .reset-page .container {
    position: relative;
    z-index: 1;
    padding-top: 0;
  }

  .reset-card {
    margin-left: auto;
    margin-right: auto;
    margin-top: 330px;
    text-align: left;
    padding: 22px 16px 28px;
    background: var(--ink);
  }

  .reset-card h1 {
    margin-left: 0;
    font-size: clamp(38px, 10vw, 58px);
  }

  .reset-card .lead,
  .reset-info,
  .reset-expect,
  .reset-form {
    margin-left: 0;
  }

  .reset-expect ul {
    padding-left: 20px;
    padding-right: 0;
    direction: ltr;
  }

  .reset-expect li {
    padding-left: 2px;
    padding-right: 0;
  }

  .offsites-hero {
    --mobile-hero-position: 50% center;
  }

  .grid.three,
  .grid.two,
  .split,
  .pricing,
  .podcast {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 24px;
  }

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

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial img {
    margin: 0 auto;
  }

  .testimonial-initial {
    margin: 0 auto;
  }

  .testimonial-meta {
    text-align: center;
  }

  .privacy-notice {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .privacy-notice-actions {
    justify-content: stretch;
  }

  .privacy-notice .button {
    flex: 1 1 150px;
  }

  .tracking-notice {
    position: static;
    width: auto;
    margin: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }

  .tracking-notice-actions {
    justify-content: flex-end;
  }

  .tracking-notice p {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .tracking-notice .button {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .contact-content {
    order: 1;
  }

  .contact-portrait {
    order: 2;
    aspect-ratio: 4 / 4.25;
    max-height: 600px;
    width: 100%;
    object-position: center 24%;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .contact-actions .button {
    width: 100%;
  }
}
