:root {
  --ink: #122f35;
  --ink-deep: #0b2227;
  --teal: #1b6766;
  --teal-bright: #2f9690;
  --cream: #f6f0e5;
  --paper: #fcfaf5;
  --gold: #d79a4a;
  --coral: #c6433d;
  --plum: #5e2f66;
  --text: #223237;
  --muted: #617075;
  --line: rgba(18, 47, 53, 0.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(11, 34, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  padding: 26px clamp(24px, 5vw, 76px);
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 1px 0 rgba(18, 47, 53, 0.1);
  content: "";
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-monogram {
  width: 55px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.site-nav .nav-cta {
  padding: 11px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

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

.linkedin-link span {
  font-size: 15px;
}

.site-nav .language-link {
  padding: 6px 10px;
  border: 1px solid rgba(18, 47, 53, 0.35);
  border-radius: 999px;
}

.site-nav .language-link::after {
  content: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: min(72vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #fffefa;
}

.hero::after {
  content: none;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  padding: 76px clamp(22px, 7vw, 110px) 34px;
  object-fit: contain;
  object-position: center;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  font-size: 17px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.97;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(18, 47, 53, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
  box-shadow: 0 15px 34px rgba(18, 47, 53, 0.25);
}

.button-text {
  gap: 10px;
  padding-right: 4px;
  padding-left: 4px;
  color: var(--ink);
}

.button-text span {
  font-size: 19px;
  transition: transform 180ms ease;
}

.button-text:hover span {
  transform: translateX(4px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 54px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.note-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--ink);
}

.portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(9, 29, 33, 0.46));
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero-quote {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 7%;
  max-width: 330px;
  padding: 24px 28px 25px 48px;
  background: rgba(252, 250, 245, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
}

.quote-mark {
  position: absolute;
  top: 13px;
  left: 19px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.orbit-one {
  top: 8%;
  right: -15%;
  width: 330px;
  height: 330px;
}

.orbit-two {
  top: 12%;
  right: -11%;
  width: 250px;
  height: 250px;
  border-color: rgba(215, 154, 74, 0.5);
}

.logo-signature {
  display: flex;
  justify-content: center;
  padding: 44px clamp(24px, 8vw, 130px);
  background: #fffefa;
  border-bottom: 1px solid var(--line);
}

.logo-signature img {
  width: min(760px, 100%);
  height: auto;
}

.belief-band {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  padding: 74px clamp(24px, 8vw, 130px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.belief-band .eyebrow {
  padding-top: 9px;
}

.belief-statement {
  max-width: 960px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.19;
}

.belief-statement strong {
  color: var(--ink);
  font-weight: 500;
}

.section {
  padding: 120px clamp(24px, 8vw, 130px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  align-self: start;
  padding-top: 10px;
}

.section-heading h2 {
  font-size: clamp(45px, 5vw, 72px);
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}

.services-section {
  background: #f9f6ef;
}

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

.service-card {
  display: grid;
  min-height: 650px;
  grid-template-columns: 58px 1fr;
  gap: 32px;
  padding: clamp(38px, 5vw, 76px);
}

.service-card-dark {
  background: var(--ink);
  color: white;
}

.service-card-light {
  background: #eadfcd;
  color: var(--text);
}

.service-number {
  padding-top: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.card-label {
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 580px;
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(35px, 3.5vw, 53px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.service-card > div > p:not(.card-label) {
  max-width: 540px;
  margin: 0;
  opacity: 0.78;
}

.service-list {
  margin: 36px 0 42px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
}

.service-card-light .service-list li {
  border-bottom-color: rgba(18, 47, 53, 0.15);
}

.service-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.card-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(5px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  background: var(--paper);
}

.about-photo {
  position: relative;
  padding: 0 0 38px 38px;
}

.about-photo::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 48%;
  background: var(--gold);
  content: "";
}

.about-photo-inner {
  position: relative;
  z-index: 1;
  height: min(620px, 62vw);
  overflow: hidden;
}

.about-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-badge {
  position: absolute;
  z-index: 2;
  right: -36px;
  bottom: 2px;
  display: flex;
  width: 145px;
  height: 145px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  border-radius: 50%;
  color: white;
  text-align: center;
}

.experience-badge strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.experience-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 680px;
}

.about-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(48px, 5.2vw, 76px);
}

.about-copy p {
  max-width: 620px;
  color: var(--muted);
}

.about-copy .about-lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.35;
}

.about-signature {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}

.about-signature span {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 41px;
  font-style: italic;
  line-height: 1;
}

.about-signature small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  background: var(--ink-deep);
  color: white;
}

.story-image {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.story-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 31, 0.08) 42%, rgba(7, 27, 31, 0.82));
  content: "";
}

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

.story-location {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.story-location span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-location strong {
  max-width: 190px;
  color: white;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
}

.story-copy {
  display: flex;
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(50px, 8vw, 140px);
}

.story-copy h2 {
  margin: 0 0 34px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 73px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.story-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
}

.story-copy .story-lede {
  color: white;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.4;
}

.story-copy blockquote {
  position: relative;
  max-width: 650px;
  margin: 20px 0 28px;
  padding: 25px 0 25px 35px;
  border-left: 2px solid var(--gold);
}

.story-copy blockquote p {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.25;
}

.experience-section {
  background: #eadfcd;
}

.experience-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 64px;
}

.experience-intro .eyebrow {
  align-self: start;
  padding-top: 10px;
}

.experience-intro h2 {
  font-size: clamp(45px, 5vw, 72px);
}

.experience-intro > p:last-child {
  margin: 0 0 4px;
  color: #526368;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
  margin-bottom: 70px;
}

.achievement-grid-four {
  grid-template-columns: 1fr 1fr;
}

.achievement-card {
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 15px 45px rgba(18, 47, 53, 0.09);
}

.achievement-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.achievement-card-featured img {
  height: 430px;
  object-position: center 32%;
}

.achievement-grid-four .achievement-card-featured img {
  height: 470px;
}

.achievement-card-wide img {
  height: 310px;
}

.achievement-card > div {
  padding: 30px;
}

.achievement-card .experience-type {
  margin-bottom: 18px;
}

.achievement-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 37px);
  font-weight: 500;
  line-height: 1.08;
}

.achievement-card p:last-child {
  margin: 0;
  color: #526368;
  font-size: 14px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(18, 47, 53, 0.2);
  border-bottom: 1px solid rgba(18, 47, 53, 0.2);
}

.experience-grid-secondary {
  margin-top: 0;
}

.experience-item {
  min-height: 330px;
  padding: 38px 38px 38px 0;
}

.experience-item + .experience-item {
  padding-left: 38px;
  border-left: 1px solid rgba(18, 47, 53, 0.2);
}

.experience-type {
  margin: 0 0 42px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-item h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(29px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.experience-item p:last-child {
  margin: 0;
  color: #526368;
  font-size: 14px;
}

.experience-note {
  max-width: 800px;
  margin: 25px 0 0;
  color: #68777a;
  font-size: 11px;
}

.approach-section {
  background: var(--ink);
  color: white;
}

.section-heading-light {
  grid-template-columns: 0.65fr 1.2fr 0.85fr;
}

.section-heading-light h2 {
  color: white;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process-grid li {
  min-height: 275px;
  padding: 34px 32px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.process-grid li + li {
  padding-left: 32px;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
}

.process-grid h3 {
  margin: 45px 0 13px;
  color: white;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.invitation-section {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.invitation-section h2 {
  max-width: 970px;
  margin: 0 auto;
  font-size: clamp(51px, 6vw, 82px);
}

.invitation-section > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px auto;
  color: var(--muted);
  font-size: 17px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 140px);
  padding: 120px clamp(24px, 8vw, 130px);
  background: #e8dcc8;
}

.contact-intro h2 {
  max-width: 580px;
  font-size: clamp(53px, 5.3vw, 78px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 28px;
  color: #526368;
}

.contact-details {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 47, 53, 0.17);
}

.contact-details p {
  display: grid;
  margin: 10px 0;
  grid-template-columns: 105px 1fr;
  font-size: 14px;
}

.contact-details span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a {
  text-underline-offset: 3px;
}

.contact-form {
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 21px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 47, 53, 0.34);
  border-radius: 0;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--teal);
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 35px;
  align-items: center;
  padding: 35px clamp(24px, 5vw, 76px);
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.68);
}

.brand-footer .brand-monogram {
  padding: 3px;
  background: #fffefa;
  border-radius: 3px;
}

.brand-footer .brand-copy strong {
  color: white;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.back-to-top {
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links > a {
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1180px) and (min-width: 781px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 12px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    padding: 22px 24px;
  }

  .hero {
    height: 680px;
  }

  .section-heading {
    grid-template-columns: 0.45fr 1.3fr;
  }

  .experience-intro {
    grid-template-columns: 0.45fr 1.3fr;
  }

  .experience-intro > p:last-child {
    grid-column: 2;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-card {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 52px 34px;
  }

  .about-section {
    gap: 70px;
  }

  .story-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .story-copy {
    padding: 90px 55px;
  }

  .achievement-grid:not(.achievement-grid-four) {
    grid-template-columns: 1fr 1fr;
  }

  .achievement-grid:not(.achievement-grid-four) .achievement-card-featured {
    grid-row: span 2;
  }

  .achievement-grid:not(.achievement-grid-four) .achievement-card-featured img {
    height: 455px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 780px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: absolute;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-monogram {
    width: 48px;
    height: 42px;
  }

  .logo-signature {
    padding: 28px 18px;
  }

  .site-nav {
    position: fixed;
    z-index: 15;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    font-family: var(--sans);
    font-size: 13px;
    border-color: var(--ink);
  }

  .site-nav .language-link {
    padding: 6px 16px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 20;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 10px;
    place-content: center;
    gap: 4px;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: white;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    height: 540px;
    min-height: 500px;
  }

  .hero-banner-image {
    padding: 95px 14px 45px;
    object-position: center;
  }

  .belief-band {
    display: block;
    padding: 65px 24px;
  }

  .belief-statement {
    font-size: 30px;
  }

  .section {
    padding: 85px 24px;
  }

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

  .section-heading h2 {
    font-size: 48px;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
  }

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

  .service-card {
    display: block;
    min-height: auto;
    padding: 47px 27px;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .service-card h3 {
    font-size: 40px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-photo {
    padding: 0 0 25px 25px;
  }

  .about-photo-inner {
    height: 430px;
  }

  .experience-badge {
    right: -5px;
    width: 125px;
    height: 125px;
  }

  .about-copy h2 {
    font-size: 51px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 560px;
  }

  .story-location {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .story-copy {
    padding: 80px 24px;
  }

  .story-copy h2 {
    font-size: 49px;
  }

  .experience-intro {
    display: block;
    margin-bottom: 42px;
  }

  .experience-intro h2 {
    font-size: 48px;
  }

  .experience-intro > p:last-child {
    margin-top: 22px;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
    margin-bottom: 55px;
  }

  .achievement-card-featured {
    grid-row: auto;
  }

  .achievement-card img,
  .achievement-card-featured img {
    height: auto;
    max-height: 520px;
    object-fit: cover;
  }

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

  .experience-item,
  .experience-item + .experience-item {
    min-height: auto;
    padding: 34px 0;
    border-left: 0;
  }

  .experience-item + .experience-item {
    border-top: 1px solid rgba(18, 47, 53, 0.2);
  }

  .experience-type {
    margin-bottom: 25px;
  }

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

  .process-grid li,
  .process-grid li + li {
    min-height: 230px;
    padding: 30px 10px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .invitation-section h2 {
    font-size: 49px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 85px 24px;
  }

  .contact-intro h2 {
    font-size: 54px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .brand-footer,
  .footer-links {
    justify-self: center;
  }
}

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

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