/* =========================================================
   Align Partners LLC — Shared Stylesheet
   Implements the locked Claude Design export (Sep 2026).
   ========================================================= */

:root {
  /* Brand colors (brand guide) */
  --navy: #0E2A47;
  --warm-teal: #15847E;
  --gold: #D4A62A;
  --seafoam: #5BAEAA;
  --cream: #F8F6F3;
  --light-teal: #D6EEF0;
  --light-gold: #FFF8E7;
  --light-grey: #F2F2F2;

  /* Design tokens used across the locked layouts */
  --align-cream: #F8F6F3;
  --align-card: #F2EEE6;
  --align-field: #FFFDFA;
  --align-warm-2: #F2EFE9;
  --eyebrow-teal: #106F6A;

  --font-body: 'Trebuchet MS', Calibri, 'Gill Sans', sans-serif;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--align-cream);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

[hidden] {
  display: none !important;
}

a {
  color: var(--warm-teal);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--navy);
}

input, textarea {
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--seafoam);
}

.page {
  background: var(--align-cream);
  color: var(--navy);
}

/* ---------- Shared layout ---------- */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
  margin: 0 0 34px;
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--eyebrow-teal);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--align-cream);
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(16px, 1.7vw, 24px) clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px clamp(16px, 2.4vw, 32px);
}

.site-logo {
  display: block;
  line-height: 0;
}

.site-logo img {
  display: block;
  height: clamp(32px, 3vw, 42px);
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px clamp(14px, 2.4vw, 36px);
  font-size: 15.5px;
}

.site-nav a {
  color: #3C4A63;
  padding: 14px 0 5px;
}

.site-nav a:hover {
  color: var(--warm-teal);
}

.site-nav a.is-active {
  color: var(--navy);
  font-weight: bold;
  border-bottom: 2px solid var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) clamp(20px, 5vw, 48px) clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__brand img {
  display: block;
  height: clamp(34px, 3.2vw, 46px);
  width: auto;
}

.site-footer__tagline {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.site-footer nav,
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 15.5px;
}

.site-footer nav a,
.site-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.site-footer nav a:hover,
.site-footer__links a:hover {
  color: #FFFFFF;
}

.site-footer__links a.cta {
  color: #FFFFFF;
}

.site-footer__links a.cta:hover {
  color: var(--seafoam);
}

.site-footer__copyright {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) clamp(32px, 3vw, 44px);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Forms (shared: Home closing form, Contact form) ---------- */
.form-card {
  flex: 0.95 1 360px;
  min-width: 0;
  max-width: 560px;
  background: var(--align-cream);
  border-radius: 26px;
  box-shadow: 0 1px 3px rgba(14, 42, 71, 0.05);
  padding: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-card.on-card {
  background: var(--align-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  color: #6B7688;
}

.form-field input,
.form-field textarea {
  font-size: 17px;
  color: var(--navy);
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E4DCD0;
  border-radius: 12px;
  background: var(--align-field);
}

.form-field textarea {
  line-height: 1.5;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 15px 32px;
  font-size: 17px;
  font-family: inherit;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--warm-teal);
}

.form-success {
  margin: 0;
  font-size: 16px;
  color: var(--warm-teal);
}

.form-success[hidden] {
  display: none;
}

.form-error {
  margin: 0;
  font-size: 15px;
  color: #B3492E;
}

/* Contact page's larger success panel */
.contact-success {
  flex: 0.95 1 360px;
  min-width: 0;
  max-width: 560px;
  background: var(--align-card);
  border-radius: 26px;
  box-shadow: 0 1px 3px rgba(14, 42, 71, 0.05);
  padding: clamp(36px, 4.5vw, 56px) clamp(24px, 3.5vw, 40px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.gold-tick {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

/* =========================================================
   HOME
   ========================================================= */

.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(56px, 6.1vw, 88px) clamp(20px, 5vw, 48px) 0;
}

.hero h1 {
  margin: 0 0 40px;
  max-width: 22em;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.19;
  font-weight: bold;
  letter-spacing: -0.012em;
  color: var(--navy);
  text-wrap: pretty;
}

.hero p {
  margin: 0;
  max-width: 34em;
  font-size: clamp(19px, 1.53vw, 22px);
  line-height: 1.62;
  color: #3C4A63;
  text-wrap: pretty;
}

.recognition {
  background: var(--align-cream);
}

.recognition__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(60px, 6.7vw, 96px) clamp(20px, 5vw, 48px) clamp(68px, 7.8vw, 112px);
}

.recognition h2 {
  margin: 0 0 44px;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: bold;
  color: var(--navy);
}

.recognition__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(18px, 2.2vw, 28px) clamp(20px, 2.8vw, 40px);
}

.recognition__card {
  margin: 0;
  background: var(--align-card);
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(14, 42, 71, 0.045);
  padding: clamp(22px, 2.6vw, 34px) clamp(22px, 2.8vw, 36px);
  font-size: clamp(17.5px, 1.39vw, 20px);
  line-height: 1.55;
  color: var(--navy);
  text-wrap: pretty;
}

.recognition__close {
  margin: 64px 0 0;
  max-width: 24em;
  font-size: clamp(21px, 1.88vw, 27px);
  line-height: 1.45;
  color: var(--navy);
  text-wrap: pretty;
}

.transition-band {
  position: relative;
  background: linear-gradient(to bottom, var(--align-cream) 0%, var(--align-cream) 61%, var(--navy) 61%, var(--navy) 100%);
}

.transition-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-left: clamp(48px, 24%, 400px);
}

.transition-band img {
  width: 100%;
  height: clamp(190px, 32vw, 480px);
  object-fit: cover;
  object-position: 46% 38%;
  border-radius: 24px 0 0 0;
}

.why-this-happens {
  background: var(--navy);
  color: #FFFFFF;
  position: relative;
}

.why-this-happens__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 116px) clamp(20px, 5vw, 48px);
  position: relative;
}

.why-this-happens .eyebrow {
  color: var(--gold);
}

.why-this-happens h2 {
  margin: 0 0 64px;
  max-width: 20em;
  font-size: clamp(27px, 2.9vw, 42px);
  line-height: 1.24;
  font-weight: bold;
  color: #FFFFFF;
  text-wrap: pretty;
}

.why-this-happens__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(32px, 5.5vw, 80px);
  max-width: 1000px;
}

.why-this-happens__grid p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 32em;
  text-wrap: pretty;
}

.why-this-happens__insight {
  margin: 80px 0 84px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 27em;
}

.why-this-happens__insight p {
  margin: 0;
  font-size: clamp(23px, 2.15vw, 31px);
  line-height: 1.4;
  color: #FFFFFF;
  text-wrap: pretty;
}

.why-this-happens__body {
  margin: 0;
  max-width: 34em;
  font-size: 19.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}

.why-this-happens__quote {
  margin: 60px 0 0;
  padding-left: 34px;
  border-left: 2px solid rgba(212, 166, 42, 0.55);
  max-width: 24em;
}

.why-this-happens__quote p {
  margin: 0;
  font-size: clamp(19.5px, 1.6vw, 23px);
  line-height: 1.55;
  color: #FFFFFF;
  text-wrap: pretty;
}

.why-this-happens__closing {
  margin: 68px 0 0;
  max-width: 30em;
  font-size: clamp(19px, 1.53vw, 22px);
  line-height: 1.58;
  font-weight: bold;
  color: var(--light-teal);
  text-wrap: pretty;
}

.three-ways {
  background: var(--align-cream);
}

.three-ways__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(68px, 7.8vw, 112px) clamp(20px, 5vw, 48px);
}

.three-ways h2 {
  margin: 0 0 68px;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: bold;
  color: var(--navy);
}

.three-ways__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.three-ways__item {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.three-ways__icon {
  display: block;
  width: 72px;
  height: 48px;
  position: relative;
}

.three-ways__icon span {
  position: absolute;
  border-radius: 999px;
}

.three-ways__item h3 {
  margin: 0;
  font-size: clamp(19.5px, 1.6vw, 23px);
  font-weight: bold;
  color: var(--navy);
}

.three-ways__item p {
  margin: 0;
  font-size: 18.5px;
  line-height: 1.64;
  color: #3C4A63;
  text-wrap: pretty;
}

.three-ways__cta {
  display: inline-block;
  margin-top: 64px;
  font-size: 18.5px;
  color: var(--warm-teal);
}

.three-ways__cta:hover {
  color: var(--navy);
}

.closing-contact {
  background: var(--align-warm-2);
}

.closing-contact__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(68px, 7.8vw, 112px) clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 88px);
  align-items: flex-start;
}

.closing-contact__text {
  flex: 1 1 380px;
  min-width: 0;
}

.closing-contact__text h2 {
  margin: 0 0 28px;
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.24;
  font-weight: bold;
  color: var(--navy);
}

.closing-contact__text p {
  margin: 0;
  font-size: clamp(18.5px, 1.46vw, 21px);
  line-height: 1.64;
  color: #3C4A63;
  max-width: 26em;
  text-wrap: pretty;
}

/* =========================================================
   WORK WITH ALIGN
   ========================================================= */

.wwa-opening {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(56px, 6.1vw, 88px) clamp(20px, 5vw, 48px) 0;
}

.wwa-opening__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 72px);
  align-items: flex-start;
}

.wwa-opening h1 {
  margin: 0;
  flex: 1 1 340px;
  min-width: 0;
  max-width: 21em;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.28;
  font-weight: bold;
  letter-spacing: -0.006em;
  color: var(--navy);
  text-wrap: pretty;
}

.wwa-opening__body {
  flex: 1 1 340px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 32em;
  padding-top: 4px;
}

.wwa-opening__body p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.68;
  color: #3C4A63;
  text-wrap: pretty;
}

.cost-hides {
  margin-top: 112px;
  background: var(--align-card);
  position: relative;
  overflow: hidden;
}

.cost-hides__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(62px, 6.9vw, 100px) clamp(20px, 5vw, 48px) clamp(68px, 7.8vw, 112px);
  position: relative;
}

.cost-hides h2 {
  margin: 0;
  max-width: 24em;
  font-size: clamp(23.5px, 2.3vw, 33px);
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: -0.008em;
  color: var(--navy);
  text-wrap: pretty;
}

.cost-hides__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4.4vw, 64px);
  align-items: flex-start;
}

.cost-hides__main {
  flex: 1.45 1 480px;
  min-width: 0;
}

.cost-hides__spacer {
  flex: 1 1 331px;
  min-width: 0;
}

.cost-hides__lead {
  margin-top: 40px;
  max-width: 34em;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cost-hides__lead p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.68;
  color: #3C4A63;
  text-wrap: pretty;
}

.cost-hides__questions {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cost-hides__questions li {
  margin: 0;
  max-width: 26em;
  font-size: clamp(19.5px, 1.6vw, 23px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--navy);
  text-wrap: pretty;
}

.cost-hides__photo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.cost-hides__field {
  flex: 1 1 320px;
  min-width: 0;
  background: var(--align-cream);
  border-top-right-radius: clamp(160px, 30vw, 380px) clamp(48px, 8.5vw, 128px);
}

.cost-hides__photo {
  flex: 1.3 1 520px;
  min-width: 0;
  max-width: 900px;
}

.cost-hides__photo img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: clamp(0px, 2.6vw, 40px);
}

.wwa-three-ways-title {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(60px, 6.7vw, 96px) clamp(20px, 5vw, 48px) 0;
}

.wwa-three-ways-title h2 {
  margin: 0;
  font-size: clamp(23px, 2.15vw, 31px);
  line-height: 1.26;
  font-weight: bold;
  letter-spacing: -0.008em;
  color: var(--navy);
  text-wrap: pretty;
}

.offer {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(40px, 4.4vw, 64px) clamp(20px, 5vw, 48px) 0;
}

.offer--first {
  padding-top: clamp(40px, 4.4vw, 64px);
}

.offer--last {
  padding-top: clamp(64px, 7.2vw, 104px);
  padding-bottom: clamp(68px, 7.8vw, 112px);
}

.offer--mid {
  padding-top: clamp(64px, 7.2vw, 104px);
}

.offer__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: flex-start;
}

.offer__label {
  flex: 0.72 1 240px;
  min-width: 0;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer__label h3 {
  margin: 0;
  font-size: clamp(23px, 2.22vw, 32px);
  line-height: 1.22;
  font-weight: bold;
  color: var(--navy);
}

.offer__body {
  flex: 1.28 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 30em;
}

.offer__body p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.68;
  color: #3C4A63;
  text-wrap: pretty;
}

.offer__body p.offer__lede {
  font-size: clamp(20px, 1.74vw, 25px);
  line-height: 1.48;
  color: var(--navy);
}

.offer__body p.offer__tagline {
  font-size: clamp(18.5px, 1.46vw, 21px);
  line-height: 1.55;
  color: var(--warm-teal);
}

.wwa-bridge {
  background: var(--align-warm-2);
}

.wwa-bridge__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(64px, 7.2vw, 104px) clamp(20px, 5vw, 48px) clamp(68px, 7.8vw, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.wwa-bridge__inner p:first-child {
  margin: 0;
  max-width: 24em;
  font-size: clamp(23.5px, 2.3vw, 33px);
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: -0.008em;
  color: var(--navy);
  text-wrap: pretty;
}

.wwa-bridge__inner p.wwa-bridge__body {
  margin: 0;
  max-width: 32em;
  font-size: 19.5px;
  line-height: 1.68;
  color: #3C4A63;
  text-wrap: pretty;
}

.wwa-bridge__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--navy);
}

.wwa-bridge__cta:hover {
  color: var(--warm-teal);
}

.faq {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(64px, 7.2vw, 104px) clamp(20px, 5vw, 48px) clamp(68px, 7.8vw, 112px);
}

.faq h2 {
  margin: 0 0 34px;
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--eyebrow-teal);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 1px solid rgba(14, 42, 71, 0.14);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(14, 42, 71, 0.14);
}

.faq__question {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 26px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.faq__question:hover {
  color: var(--warm-teal);
}

.faq__question-text {
  max-width: 34em;
  font-size: clamp(18.5px, 1.46vw, 21px);
  line-height: 1.45;
  font-weight: bold;
  color: var(--navy);
  text-wrap: pretty;
}

.faq__question:hover .faq__question-text {
  color: inherit;
}

.faq__toggle {
  flex: none;
  font-size: clamp(18.5px, 1.46vw, 21px);
  line-height: 1.45;
  color: var(--warm-teal);
}

.faq__answer {
  padding: 0 0 30px;
}

.faq__answer[hidden] {
  display: none;
}

.faq__answer p {
  margin: 0;
  max-width: 34em;
  font-size: 19.5px;
  line-height: 1.68;
  color: #3C4A63;
  text-wrap: pretty;
}

.faq__answer p + p {
  margin-top: 19px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-opening {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(60px, 6.7vw, 96px) clamp(20px, 5vw, 48px) 0;
}

.about-opening__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6.6vw, 96px);
  align-items: flex-start;
}

.about-opening__text {
  flex: 1.22 1 440px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-opening__lede {
  margin: 0;
  max-width: 20em;
  font-size: clamp(27px, 2.9vw, 40px);
  line-height: 1.26;
  color: var(--navy);
  text-wrap: pretty;
}

.about-opening__text p.body {
  margin: 0;
  max-width: 30em;
  font-size: 19.5px;
  line-height: 1.74;
  color: #3C4A63;
  text-wrap: pretty;
}

.about-portrait {
  flex: 0.78 1 281px;
  min-width: 0;
  max-width: 380px;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-portrait__frame {
  width: 100%;
  aspect-ratio: 768 / 810;
  border-radius: 32px;
  overflow: hidden;
  background: var(--align-card);
}

.about-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15.5px;
  line-height: 1.5;
}

.about-portrait figcaption .name {
  color: var(--navy);
  font-weight: bold;
}

.about-portrait figcaption .title {
  color: var(--warm-teal);
}

.about-pattern {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(36px, 3.9vw, 56px) clamp(20px, 5vw, 48px) 0;
}

.about-pattern__body {
  max-width: 39em;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-pattern__body p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.74;
  color: #3C4A63;
  text-wrap: pretty;
}

.about-pattern__pull {
  margin: 84px 0 0;
  max-width: 28em;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-pattern__pull p {
  margin: 0;
  font-size: clamp(23.5px, 2.3vw, 33px);
  line-height: 1.38;
  color: var(--navy);
  text-wrap: pretty;
}

.about-shaped-work {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(52px, 5.8vw, 84px) clamp(20px, 5vw, 48px) clamp(70px, 8vw, 116px);
}

.about-shaped-work__body {
  max-width: 39em;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-shaped-work__body p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.74;
  color: #3C4A63;
  text-wrap: pretty;
}

.about-shaped-work__learned {
  margin: 64px 0 0;
  max-width: 24em;
  font-size: clamp(21px, 1.88vw, 27px);
  line-height: 1.46;
  color: var(--navy);
  text-wrap: pretty;
}

.who-partner-with {
  background: var(--navy);
  color: #FFFFFF;
}

.who-partner-with__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(68px, 7.8vw, 112px) clamp(20px, 5vw, 48px);
}

.who-partner-with .eyebrow {
  margin: 0 0 32px;
  color: var(--gold);
}

.who-partner-with__body {
  margin: 0 0 72px;
  max-width: 42em;
  font-size: 19.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}

.who-partner-with__quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 34px;
  border-left: 2px solid rgba(212, 166, 42, 0.55);
  max-width: 24em;
}

.who-partner-with__quote p {
  margin: 0;
  font-size: clamp(19.5px, 1.6vw, 23px);
  line-height: 1.55;
  color: #FFFFFF;
}

.who-partner-with__quote p.founding {
  font-weight: bold;
  color: var(--light-teal);
}

.about-cta {
  background: var(--align-warm-2);
}

.about-cta__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(64px, 7.2vw, 104px) clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.about-cta__inner h2 {
  margin: 0;
  max-width: 20em;
  font-size: clamp(24px, 2.36vw, 34px);
  line-height: 1.28;
  font-weight: bold;
  color: var(--navy);
  text-wrap: pretty;
}

.about-cta__link {
  font-size: clamp(18.5px, 1.46vw, 21px);
  color: var(--warm-teal);
}

.about-cta__link:hover {
  color: var(--navy);
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-section {
  flex: 1;
}

.contact-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(56px, 6.1vw, 88px) clamp(20px, 5vw, 48px) clamp(76px, 8.9vw, 128px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 88px);
  align-items: flex-start;
}

.contact-intro {
  flex: 1 1 380px;
  min-width: 0;
}

.contact-intro h1 {
  margin: 0 0 30px;
  max-width: 14em;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.22;
  font-weight: bold;
  letter-spacing: -0.012em;
  color: var(--navy);
  text-wrap: pretty;
}

.contact-intro p {
  margin: 0;
  max-width: 26em;
  font-size: clamp(18.5px, 1.46vw, 21px);
  line-height: 1.66;
  color: #3C4A63;
  text-wrap: pretty;
}

.contact-success p {
  margin: 0;
  max-width: 18em;
  font-size: clamp(20px, 1.74vw, 25px);
  line-height: 1.45;
  color: var(--navy);
  text-wrap: pretty;
}
