@font-face {
  font-family: "Cinzel";
  src: url("fonts/cinzel-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("fonts/cinzel-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-300.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f7f3ed;
  --warm: #e7e3dc;
  --ivory: #eee8de;
  --ink: #1a1a1c;
  --char: #2a2a2a;
  --bronze: #b77a50;
  --blue: #657782;
  --line: rgba(26, 26, 28, 0.18);
  --gutter: clamp(24px, 7.1vw, 102px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

::selection {
  background: var(--bronze);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  height: 74px;
  color: var(--ink);
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.brand {
  position: relative;
  z-index: 12;
  width: 176px;
  height: 48px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.site-header.scrolled .brand img {
  filter: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  text-transform: uppercase;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
}

.desktop-nav > a:not(.nav-cta) {
  padding: 14px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav > a:not(.nav-cta):hover,
.desktop-nav > a:not(.nav-cta):focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-cta {
  padding: 0.85rem 1.1rem;
  border: 1px solid currentColor;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ivory);
  color: var(--ink);
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  height: min(930px, 100svh);
  min-height: 700px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 17, 0.7), rgba(16, 16, 17, 0.12)),
    linear-gradient(0deg, rgba(16, 16, 17, 0.4), transparent 55%);
}

.hero-content {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 8vw, 124px);
  top: 50%;
  max-width: 960px;
  transform: translateY(-43%);
}

.eyebrow {
  margin-bottom: 21px;
  color: var(--bronze);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.eyebrow.light {
  color: #e5a77d;
}

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 400;
  font-kerning: normal;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

p,
li,
summary {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.home-hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.9rem, 5.2vw, 5.9rem);
  line-height: 1.07;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(0.95rem, 1.3vw, 1.16rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.light-button {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.light-button:hover,
.light-button:focus-visible {
  background: #fff;
  border-color: #fff;
}

.ghost-button {
  border-color: currentColor;
  color: #fff;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.dark-button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.dark-button:hover,
.dark-button:focus-visible {
  background: var(--bronze);
  border-color: var(--bronze);
}

.proof-bar {
  min-height: 46px;
  padding: 1.1rem 7vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #ddd;
  text-transform: uppercase;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.proof-bar span {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-bar span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(88px, 10vw, 155px) clamp(24px, 7vw, 108px);
}

.section h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.65vw, 4.1rem);
  line-height: 1.14;
}

.section p {
  line-height: 1.8;
}

.intro {
  min-height: 526px;
}

.intro-inner {
  max-width: 805px;
}

.intro-copy {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.muted {
  background: var(--warm);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 19px 0 0;
  font-size: 0.85rem;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 180ms ease;
}

.service-card:hover {
  background: rgba(247, 243, 237, 0.7);
}

.service-card > div {
  display: flex;
  justify-content: space-between;
}

.service-card .eyebrow {
  margin-bottom: 16px;
}

.card-number {
  color: rgba(26, 26, 28, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 440px;
  margin: 34px 0 15px;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.25;
}

.service-card > p {
  max-width: 470px;
  margin-bottom: 25px;
  font-size: 0.77rem;
  line-height: 1.7;
}

.card-link {
  margin-top: auto;
  padding-top: 8px;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.service-card:last-child {
  grid-column: 1 / 2;
}

.adu-feature {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(70px, 10vw, 150px);
  background: var(--ivory);
}

.adu-copy h2 {
  max-width: 590px;
}

.adu-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
}

.life-list .eyebrow {
  color: #e5a77d;
}

.life-list {
  padding: clamp(2rem, 4.5vw, 4.5rem);
  background: var(--ink);
  color: #fff;
}

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

.life-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: center;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.life-list li span {
  color: var(--bronze);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.life-list .small-copy {
  margin: 1.5rem 0 0;
  color: #c7c4bf;
  font-size: 0.76rem;
  line-height: 1.7;
}

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

.visual-story .section-heading {
  max-width: 760px;
}

.image-story {
  display: grid;
  grid-template-columns: 2.08fr 1fr;
  grid-template-rows: repeat(2, 322px);
  gap: 16px;
}

.image-story figure {
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}

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

.image-story figure:hover img {
  transform: scale(1.018);
}

.image-large {
  grid-row: 1 / 3;
}

.image-large img {
  object-position: center;
}

.image-small:nth-child(2) img {
  object-position: center;
}

.image-small:nth-child(3) img {
  object-position: 62% center;
}

.founder {
  min-height: 780px;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 9vw;
}

.founder-portrait {
  aspect-ratio: 7 / 12;
  margin: 0;
  overflow: hidden;
  background: #c6c6c6;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h2 {
  max-width: 630px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 0.91rem;
}

.signature {
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.signature span {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.12rem;
}

.signature small {
  margin-top: 7px;
  color: var(--bronze);
  text-transform: uppercase;
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.dark {
  background: var(--ink);
  color: #fff;
}

.process-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 11vw, 160px);
}

.process-copy h2 {
  max-width: 620px;
}

.process-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 28px;
  color: #d5d5d5;
  font-size: 0.84rem;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.process-steps li {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.12rem;
}

.process-steps li span {
  width: 68px;
  color: #e5a77d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.areas {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.areas-heading h2 {
  max-width: 450px;
}

.areas-heading > p:last-child {
  max-width: 450px;
  margin: 24px 0 0;
  font-size: 0.82rem;
}

.area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.area-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.3rem;
}

.home-faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading h2 {
  max-width: 460px;
}

.faq-heading > p:last-child {
  max-width: 410px;
  margin: 24px 0 0;
  font-size: 0.82rem;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 22px 48px 22px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.5;
}

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

.faq-list summary i,
.faq-list summary i::after {
  position: absolute;
  right: 6px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.faq-list summary i::after {
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  max-width: 680px;
  margin: -2px 48px 24px 0;
  color: rgba(26, 26, 28, 0.75);
  font-size: 0.79rem;
}

.final-cta {
  padding: clamp(100px, 10vw, 150px) var(--gutter);
  background: var(--blue);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.contact-intro {
  max-width: 540px;
}

.final-cta h2 {
  margin-bottom: 22px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.contact-intro .contact-direct {
  margin-top: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-direct a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.6;
  transition: border-color 180ms ease;
}

.contact-form select {
  min-height: 48px;
}

.contact-form select option {
  background: var(--blue);
  color: #fff;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px var(--blue) inset;
}

.form-submit {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.form-submit button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note {
  max-width: 285px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  line-height: 1.65;
}

.form-status {
  min-height: 1.6em;
  margin: -10px 0 0;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-status.success {
  color: #f5eadf;
}

.form-status.error {
  color: #ffe1d8;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding: 80px var(--gutter) 30px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr));
  column-gap: 42px;
  row-gap: 58px;
  background: var(--ink);
  color: #fff;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  max-width: 280px;
  margin: 26px 0 0;
  color: #c9c9c9;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.75rem;
  line-height: 1.7;
}

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

.footer-column > p {
  margin-bottom: 8px;
  color: #e5a77d;
  text-transform: uppercase;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.footer-column a,
.footer-column span {
  color: #d2d2d2;
  font-size: 0.7rem;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-contact a {
  white-space: nowrap;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  color: #9d9d9d;
  text-transform: uppercase;
  font-size: 0.57rem;
  letter-spacing: 0.11em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #e5a77d;
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: clamp(30px, 6vw, 62px);
  }

  .section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .service-card {
    min-height: 330px;
  }

  .adu-feature,
  .process-preview {
    gap: 70px;
  }

  .founder,
  .areas,
  .home-faq {
    gap: 72px;
  }

  .image-story {
    grid-template-rows: repeat(2, 260px);
  }

  .site-footer {
    grid-template-columns: 1.25fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    position: relative;
    z-index: 12;
    width: 62px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

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

  .mobile-menu summary i,
  .mobile-menu summary i::after {
    position: absolute;
    right: 0;
    top: 15px;
    width: 16px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .mobile-menu summary i::after {
    top: 6px;
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary i {
    top: 19px;
    transform: rotate(45deg);
  }

  .mobile-menu[open] summary i::after {
    top: 0;
    transform: rotate(90deg);
  }

  .mobile-menu > nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    padding: 120px 24px 40px;
    background: var(--ivory);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu > nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Cinzel", Georgia, serif;
    font-size: 2rem;
  }

  .proof-bar {
    padding: 1.1rem 7vw;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .proof-bar span {
    border-right: 0;
  }

  .intro {
    min-height: auto;
  }

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

  .service-card {
    min-height: 290px;
    padding: 28px 24px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .adu-feature,
  .founder,
  .process-preview,
  .areas,
  .home-faq,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .founder-portrait {
    width: min(100%, 480px);
    justify-self: center;
  }

  .image-story {
    grid-template-columns: 1fr;
    grid-template-rows: 460px 280px 280px;
  }

  .image-large {
    grid-row: auto;
  }

  .process-preview {
    gap: 64px;
  }

  .site-footer {
    padding: 70px 24px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 20px;
  }

  .site-header:has(.mobile-menu[open]) {
    color: var(--ink);
    background: var(--ivory);
  }

  .site-header:has(.mobile-menu[open]) .brand img {
    filter: none;
  }

  .brand {
    width: 154px;
  }

  .home-hero {
    height: 100svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 108px;
    width: auto;
    max-width: none;
    transform: none;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.3rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .eyebrow {
    letter-spacing: 0.14em;
  }

  .button {
    letter-spacing: 0.085em;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-bar {
    display: none;
  }

  .section {
    padding-inline: 22px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.14;
  }

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

  .image-story {
    grid-template-rows: 360px 235px 235px;
  }

  .founder-portrait {
    width: 100%;
  }

  .final-cta {
    padding-inline: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field-full,
  .form-status {
    grid-column: auto;
  }

  .area-list li {
    font-size: 1.3rem;
  }

  .faq-list summary {
    font-size: 1.05rem;
    line-height: 1.45;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}
