:root {
  --paper: #f4f1eb;
  --paper-deep: #ebe6de;
  --ink: #2f2b31;
  --muted: #726c72;
  --plum: #7b6a84;
  --plum-deep: #645372;
  --clay: #bd8d71;
  --line: rgba(47, 43, 49, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: min(1180px, calc(100% - 10vw));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 241, 235, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(47, 43, 49, 0.04);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum-deep);
}

.brand-symbol {
  display: inline-flex;
  width: 38px;
  height: 38px;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.18);
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum-deep);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: var(--paper);
  background: var(--plum);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.94fr) minmax(420px, 1.06fr);
  min-height: min(800px, 100vh);
  padding-top: 78px;
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: clamp(3.5rem, 8vw, 8rem) clamp(2rem, 8vw, 9rem) clamp(3rem, 6vw, 6rem) 10vw;
}

.eyebrow,
.section-index,
.contact-label {
  margin: 0;
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-emblem {
  width: 112px;
  margin: 2.5rem 0 1.4rem;
  color: var(--plum);
}

.hero-emblem svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 620px;
  margin-bottom: 1.3rem;
  color: var(--plum-deep);
  font-size: clamp(4.4rem, 7.7vw, 8.5rem);
  line-height: 0.8;
}

h1 em,
h2 em,
.manifesto em,
.aside-note em,
.contact-phrase em {
  font-weight: 400;
}

h1 em,
h2 em {
  color: var(--clay);
}

.hero-intro {
  max-width: 360px;
  margin-bottom: 2.1rem;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--plum);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--plum-deep);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--paper);
  background: var(--plum);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--plum-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--clay);
  color: var(--clay);
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 4rem;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-footnote span:first-child {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--plum);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.68) sepia(0.14);
}

.image-wash {
  position: absolute;
  inset: 0;
  background: rgba(79, 64, 87, 0.11);
  mix-blend-mode: multiply;
}

.vertical-caption {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 100%;
  margin: 0;
  color: var(--paper);
  background: rgba(96, 80, 105, 0.85);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-location {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--paper);
  border-radius: 50%;
}

.hero-image-note {
  position: absolute;
  right: 6rem;
  bottom: 2rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.92;
  text-align: right;
}

.intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.56fr) minmax(300px, 1.2fr) minmax(190px, 0.76fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.section-index {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.section-index:first-letter {
  color: var(--clay);
}

.section-index span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--clay);
}

h2 {
  margin-bottom: 2rem;
  color: var(--plum-deep);
  font-size: clamp(3.5rem, 5.7vw, 6.2rem);
  line-height: 0.84;
}

.intro-content {
  max-width: 560px;
}

.intro-content h2,
.section-heading h2,
.experience-copy h2,
.contact-intro h2 {
  margin-top: 1.3rem;
}

.intro-text {
  max-width: 430px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.intro-text p {
  margin-bottom: 1.2rem;
}

.intro-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 430px;
  margin: -0.25rem 0 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-credential p {
  margin: 0;
}

.intro-credential strong {
  color: var(--plum-deep);
  font-weight: 700;
}

.credential-mark {
  color: var(--clay);
  font-size: 1.1rem;
  line-height: 1;
}

.intro-aside {
  align-self: end;
  padding-top: 5rem;
}

.line-art {
  width: min(150px, 80%);
  margin-left: auto;
  color: var(--clay);
}

.line-art svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.aside-note {
  margin: 1.3rem 0 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.02;
  text-align: right;
}

.about {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(400px, 1.08fr);
  background: var(--paper-deep);
}

.about-image-wrap {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) sepia(0.09);
}

.about-copy {
  max-width: 760px;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 9rem);
}

.about-copy h2 {
  margin-bottom: 2.2rem;
}

.about-text {
  max-width: 540px;
  color: var(--muted);
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-copy blockquote {
  max-width: 460px;
  margin: 2.5rem 0;
  padding-left: 1.15rem;
  border-left: 1px solid var(--clay);
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 0.96;
}

.manifesto {
  color: var(--paper);
  background: var(--plum);
}

.manifesto-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 7vw, 9rem);
  min-height: 260px;
  padding-block: 3.5rem;
}

.manifesto-mark {
  color: var(--clay);
  font-size: 2rem;
  line-height: 1;
}

.manifesto p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 0.9;
}

.manifesto em {
  color: #e5c0a4;
}

.manifesto-number {
  position: absolute;
  top: 2rem;
  right: 0;
  color: rgba(244, 241, 235, 0.65);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.practices {
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.56fr) minmax(320px, 1.2fr) minmax(220px, 0.76fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: 4.5rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-copy {
  max-width: 285px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.practice-item {
  display: grid;
  grid-template-columns: 0.5fr 0.45fr 2fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 172px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, padding 200ms ease;
}

.practice-item:hover {
  padding-inline: 1.2rem;
  background: rgba(255, 255, 255, 0.32);
}

.practice-number {
  align-self: start;
  padding-top: 2rem;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.practice-icon {
  color: var(--plum);
}

.practice-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.practice-copy h3 {
  margin-bottom: 0.25rem;
  color: var(--plum-deep);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1;
}

.practice-copy p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.practice-arrow {
  align-self: center;
  color: var(--clay);
  font-size: 1.5rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(400px, 1fr);
  background: var(--paper-deep);
}

.experience-image-wrap {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.experience-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: saturate(0.66) sepia(0.17);
}

.image-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 0.5rem 0.8rem;
  color: var(--paper);
  background: rgba(95, 82, 104, 0.88);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-copy {
  max-width: 690px;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 9rem);
}

.experience-copy > p:not(.eyebrow):not(.section-index) {
  max-width: 410px;
  margin-bottom: 3rem;
  color: var(--muted);
}

.detail-list {
  margin-bottom: 3rem;
  border-top: 1px solid var(--line);
}

.detail-list > div {
  display: flex;
  gap: 1.6rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.detail-list p {
  margin: 0;
  color: var(--plum-deep);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.05;
}

.detail-list small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.contact-intro > p:not(.eyebrow):not(.section-index) {
  max-width: 420px;
  margin-bottom: 2.1rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 3rem 2rem;
  padding: 2rem 0 2rem 4rem;
  border-left: 1px solid var(--line);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: var(--plum-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.contact-detail a {
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.social-block {
  grid-column: 1 / -1;
  padding-top: 0.4rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--plum-deep);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--clay);
}

.social-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--plum);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.contact-phrase {
  grid-column: 1 / -1;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.1vw, 4.6rem);
  line-height: 0.8;
  text-align: right;
}

.contact-phrase em {
  color: var(--clay);
}

.site-footer {
  color: var(--paper);
  background: var(--plum-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 170px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 180px;
  height: 138px;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.72);
}

.footer-top > p {
  margin: 0;
  color: rgba(244, 241, 235, 0.76);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 0.95;
  text-align: center;
}

.back-to-top {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(244, 241, 235, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.back-to-top span {
  margin-left: 10px;
  color: #e5c0a4;
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid rgba(244, 241, 235, 0.2);
  color: rgba(244, 241, 235, 0.6);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .section-shell {
    width: min(1180px, calc(100% - 8vw));
  }

  .hero {
    grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
  }

  .hero-copy {
    padding-left: 8vw;
  }

  .intro,
  .section-heading {
    grid-template-columns: 0.4fr 1.2fr 0.7fr;
    gap: 2.5rem;
  }

  .contact-details {
    padding-left: 2rem;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 6vw;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

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

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

  .site-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 86px 6vw 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 35px rgba(47, 43, 49, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    border-bottom: 0;
  }

  .hero {
    display: block;
    padding-top: 68px;
  }

  .hero-copy {
    min-height: auto;
    padding: 5.5rem 6vw 4.5rem;
  }

  .hero-emblem {
    margin-top: 2rem;
  }

  h1 {
    font-size: clamp(4.2rem, 19vw, 7rem);
  }

  .hero-image-wrap,
  .hero-image {
    min-height: 500px;
    height: 66vh;
  }

  .vertical-caption {
    width: 46px;
  }

  .hero-image-note {
    right: 4.5rem;
  }

  .intro,
  .section-heading {
    display: block;
  }

  .intro {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .intro .section-index,
  .section-heading .section-index {
    margin-bottom: 3.5rem;
  }

  h2 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .intro-aside {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 3.5rem;
  }

  .line-art {
    width: 100px;
    margin: 0;
  }

  .aside-note {
    font-size: 1.4rem;
    text-align: left;
  }

  .manifesto-inner {
    min-height: 230px;
    gap: 1.3rem;
  }

  .manifesto p {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .practices {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-heading-copy {
    max-width: 400px;
    margin-top: 2rem;
  }

  .practice-list {
    margin-top: 3.5rem;
  }

  .practice-item {
    grid-template-columns: 35px 50px 1fr auto;
    min-height: 145px;
    gap: 0.8rem;
  }

  .practice-item:hover {
    padding-inline: 0.5rem;
  }

  .practice-number {
    padding-top: 1.5rem;
    font-size: 1.1rem;
  }

  .practice-icon svg {
    width: 46px;
    height: 46px;
  }

  .practice-copy h3 {
    font-size: 1.85rem;
  }

  .practice-copy p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .experience {
    display: block;
  }

  .about {
    display: block;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 470px;
    height: 64vh;
  }

  .about-copy {
    padding: 5.5rem 6vw;
  }

  .experience-image-wrap,
  .experience-image-wrap img {
    min-height: 470px;
    height: 64vh;
  }

  .experience-copy {
    padding: 5.5rem 6vw;
  }

  .contact {
    display: block;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .contact-details {
    margin-top: 5rem;
    padding: 2rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-detail p,
  .contact-detail a {
    font-size: 1.35rem;
  }

  .contact-phrase {
    margin-top: 1rem;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.8rem;
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-top > p {
    width: 100%;
    order: 3;
    text-align: left;
  }

  .footer-logo-link {
    width: 150px;
    height: 105px;
  }

  .footer-bottom {
    display: grid;
    gap: 0.6rem;
    padding-block: 1.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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