:root {
  --bg: #fbf8f2;
  --bg-soft: #f4eee8;
  --ink: #153d35;
  --text: #233a36;
  --muted: #6f746f;
  --emerald: #043f36;
  --emerald-2: #0c5d50;
  --sapphire: #1f4169;
  --amethyst: #8e789b;
  --garnet: #5b173d;
  --gold: #c79742;
  --line: rgba(21, 61, 53, 0.16);
  --shadow: 0 22px 60px rgba(22, 45, 40, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(112deg, transparent 0 62%, rgba(199, 151, 66, 0.12) 62.2%, transparent 62.5%),
    radial-gradient(circle at top left, rgba(142, 120, 155, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #fffdf9 58%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.66;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header,
.site-footer,
main {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 20px;
}

.brand {
  display: inline-grid;
  place-items: center;
  color: var(--emerald);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.6vw, 34px);
  color: var(--ink);
  font-size: 0.84rem;
}

.main-nav a,
.site-footer nav a {
  position: relative;
  padding: 7px 0;
}

.main-nav a::after,
.site-footer nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(28px, 5.2vw, 68px);
  align-items: center;
}

.hero {
  min-height: calc(100vh - 118px);
  padding: 14px 0 50px;
}

.page-intro.section-grid,
.contact-hero.section-grid,
.case-hero.section-grid {
  align-items: start;
}

.hero-copy {
  max-width: 550px;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.45vw, 5.6rem);
}

.hero h1 {
  font-size: clamp(2.85rem, 4.75vw, 4.72rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.05vw, 3.78rem);
}

h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero p,
.lead,
.contact-hero p {
  max-width: 520px;
  color: var(--text);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--emerald);
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--emerald);
  color: #fffaf0;
}

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

.button-light {
  border-color: rgba(255, 250, 240, 0.8);
  color: #fffaf0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero-image::after,
.contact-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    repeating-radial-gradient(ellipse at 70% 100%, transparent 0 22px, rgba(199, 151, 66, 0.34) 23px 24px, transparent 25px 46px);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.image-frame img,
.image-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.wide-slide {
  aspect-ratio: 2346 / 1282;
  background: #062a3c;
}

.image-frame.wide-slide img {
  object-fit: contain;
  object-position: center;
}

.hero-image {
  min-height: 0;
  aspect-ratio: 5 / 6;
}

.hero-image img {
  object-position: 48% 50%;
}

.split-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin: 6px 0 74px;
}

.statement-panel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: clamp(360px, 34vw, 430px);
  min-height: 390px;
  padding: clamp(26px, 4.5vw, 52px);
  background:
    radial-gradient(circle at 88% 18%, rgba(199, 151, 66, 0.16), transparent 8rem),
    linear-gradient(135deg, rgba(244, 238, 232, 0.96), rgba(255, 252, 246, 0.78));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(199, 151, 66, 0.26);
}

.statement-panel::before {
  position: absolute;
  left: clamp(26px, 4.5vw, 52px);
  top: clamp(26px, 4.5vw, 52px);
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: 0;
  content: "";
  pointer-events: none;
}

.statement-panel::after {
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 126px;
  height: 64px;
  border: solid rgba(12, 93, 80, 0.28);
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 999px;
  content: "";
  pointer-events: none;
}

.statement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 520px;
}

.statement-kicker {
  color: var(--garnet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.statement-panel p,
.cta-band p,
.closing-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.78rem, 3.45vw, 3.12rem);
  line-height: 1.18;
}

.statement-panel p {
  color: var(--ink);
  font-size: clamp(1.58rem, 2.75vw, 2.58rem);
}

.statement-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.statement-markers span {
  min-width: 88px;
  padding: 9px 13px;
  border: 1px solid rgba(21, 61, 53, 0.18);
  background: rgba(255, 255, 255, 0.42);
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.quiet-image {
  height: clamp(360px, 34vw, 430px);
  min-height: 390px;
  box-shadow: none;
}

.content-section,
.experience-section,
.work-intro,
.work-group,
.contact-section {
  padding: 64px 0;
}

.work-intro {
  padding-bottom: 36px;
}

.section-heading::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
  content: "";
}

.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 72px);
  margin-top: 48px;
  text-align: center;
}

.service-list article {
  max-width: 310px;
  margin-inline: auto;
}

.line-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--emerald);
  font-size: 1.9rem;
  line-height: 1;
}

.service-list p,
.project-copy p,
.venture-card p,
.timeline p,
.skills-section p {
  color: var(--muted);
}

.values-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 36px calc(50% - 50vw) 0;
  padding: 38px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--emerald), var(--garnet));
  color: #fff8f1;
}

.values-band article {
  min-height: 152px;
  padding: 8px clamp(16px, 2.6vw, 34px);
  border-left: 1px solid rgba(255, 248, 241, 0.32);
}

.values-band article:first-child {
  border-left: 0;
}

.values-band span {
  color: var(--gold);
  font-size: 1.8rem;
}

.values-band h2 {
  margin: 16px 0 7px;
  color: #fff8f1;
  font-size: clamp(1.22rem, 1.75vw, 1.6rem);
}

.values-band p {
  margin: 0;
  color: rgba(255, 248, 241, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-band,
.closing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 62px 0 74px;
  padding: clamp(26px, 4.4vw, 48px);
  background: linear-gradient(135deg, var(--emerald) 0%, #075547 100%);
  color: #fff8f1;
}

.cta-band p,
.closing-band p {
  max-width: 760px;
  font-size: clamp(1.38rem, 2.55vw, 2.16rem);
}

.page-intro {
  padding: 62px 0 48px;
}

.page-intro h1,
.contact-hero h1,
.work-intro h1 {
  font-size: clamp(2.85rem, 5.45vw, 5.6rem);
}

.page-intro p:not(.lead) {
  max-width: 650px;
}

.about-image {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.contact-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.experience-section {
  background: rgba(244, 238, 232, 0.58);
  margin-inline: calc(50% - 50vw);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

.timeline {
  max-width: 830px;
  margin-top: 48px;
  border-left: 1px solid rgba(199, 151, 66, 0.55);
}

.timeline article {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 38px;
  position: relative;
  padding: 0 0 42px 36px;
}

.timeline article::before {
  position: absolute;
  left: -6px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.timeline h3 {
  margin-bottom: 4px;
}

.timeline time,
.meta {
  color: var(--garnet);
  font-size: 0.82rem;
  font-weight: 700;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.skills-intro {
  max-width: 620px;
  color: var(--muted);
}

.skill-list span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.board-section {
  padding: 28px 0 76px;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: 40px;
}

.board-list article {
  border-top: 1px solid rgba(199, 151, 66, 0.55);
  padding-top: 22px;
}

.board-list span {
  color: var(--garnet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-list h3 {
  margin: 14px 0 6px;
}

.board-list p {
  margin: 0;
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.filter-button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.86rem;
  padding: 8px 0;
}

.filter-button::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  content: "";
}

.filter-button.is-active::after,
.filter-button:hover::after,
.filter-button:focus-visible::after {
  width: 100%;
}

.project-list {
  display: grid;
  gap: 54px;
  padding-bottom: 62px;
}

.work-group {
  border-top: 1px solid rgba(199, 151, 66, 0.45);
  padding: 44px 0;
}

.work-group:first-of-type {
  border-top: 0;
  padding-top: 22px;
}

.work-group.is-hidden {
  display: none;
}

.work-group > .section-heading {
  margin-bottom: 34px;
}

.work-group > .section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.venture-card {
  display: grid;
  gap: 20px;
}

.venture-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.project-row.is-hidden,
.venture-card.is-hidden {
  display: none;
}

.project-media {
  border: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
}

.project-copy {
  max-width: 520px;
}

.project-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.78rem, 3.4vw, 3rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--emerald);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  font-size: 1.3rem;
}

.soft-cta {
  margin: 0 calc(50% - 50vw) 74px;
  padding: 64px 20px;
  background: linear-gradient(135deg, rgba(142, 120, 155, 0.22), rgba(255, 252, 246, 0.4));
  text-align: center;
}

.soft-cta span {
  color: var(--garnet);
  font-size: 2.15rem;
}

.soft-cta p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--muted);
}

.contact-hero {
  padding: 62px 0 36px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form .button {
  justify-self: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 61, 53, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  padding: 14px 16px;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(199, 151, 66, 0.5);
  outline-offset: 2px;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-details article {
  border-left: 1px solid var(--gold);
  padding-left: 22px;
}

.contact-details span {
  display: block;
  color: var(--emerald);
  font-size: 1.6rem;
}

.contact-details h2 {
  margin: 8px 0 4px;
  font-size: 1.22rem;
}

.contact-details p {
  margin: 0;
}

.form-status {
  min-height: 1.4em;
  color: var(--emerald);
  font-weight: 700;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 20, 0.68);
}

.modal-panel {
  position: relative;
  width: min(900px, 100%);
  padding: 16px;
  background: var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--emerald);
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
}

.modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #112822;
}

.modal-note {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.closing-band {
  justify-content: flex-start;
}

.case-page {
  padding-bottom: 76px;
}

.back-link {
  display: inline-flex;
  margin: 22px 0 12px;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 700;
}

.back-link::before {
  margin-right: 10px;
  content: "←";
}

.case-hero {
  min-height: auto;
  padding: 42px 0 64px;
}

.case-kicker {
  margin-bottom: 18px;
  color: var(--garnet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.case-hero-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.case-hero-image img {
  object-position: center;
}

.case-photo-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(199, 151, 66, 0.18);
}

.case-photo-scroll .image-frame {
  flex: 0 0 84%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
}

.case-photo-scroll img {
  object-position: center;
}

.case-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(199, 151, 66, 0.5);
  border-bottom: 1px solid rgba(199, 151, 66, 0.5);
}

.case-overview article {
  min-height: 126px;
  padding: 28px clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(199, 151, 66, 0.45);
}

.case-overview article:first-child {
  border-left: 0;
}

.case-overview span {
  display: block;
  margin-bottom: 10px;
  color: var(--garnet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-overview p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.22;
}

.case-story,
.case-band,
.case-gallery {
  padding: 72px 0;
}

.case-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  margin-top: 40px;
}

.case-columns > p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.clean-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.case-band {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, rgba(142, 120, 155, 0.18), rgba(244, 238, 232, 0.72));
}

.case-band h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.skill-list.compact {
  max-width: 900px;
  margin-top: 28px;
}

.case-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.case-gallery .image-frame {
  aspect-ratio: 4 / 3;
}

.case-gallery p {
  color: var(--muted);
}

.case-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(199, 151, 66, 0.5);
  padding-top: 28px;
}

.case-nav a {
  color: var(--emerald);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(199, 151, 66, 0.5);
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer nav {
  justify-content: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-grid,
  .split-band,
  .project-row,
  .contact-section,
  .case-columns,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .values-band,
  .venture-grid,
  .board-list,
  .case-overview {
    grid-template-columns: 1fr;
  }

  .values-band article,
  .case-overview article {
    border-left: 0;
    border-top: 1px solid rgba(255, 248, 241, 0.32);
  }

  .case-overview article {
    border-top-color: rgba(199, 151, 66, 0.45);
  }

  .values-band article:first-child,
  .case-overview article:first-child {
    border-top: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(3.25rem, 14.5vw, 5.4rem);
  }

  .hero-image,
  .about-image,
  .case-hero-image {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-image {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .case-photo-scroll .image-frame {
    flex-basis: 86%;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .split-band {
    margin-bottom: 48px;
  }

  .statement-panel {
    height: auto;
    min-height: auto;
  }

  .quiet-image {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-hero {
    padding: 34px 0 48px;
  }

  .case-story,
  .case-band,
  .case-gallery {
    padding: 54px 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1180px);
  }

  .main-nav {
    gap: 16px;
  }

  .button-row,
  .filter-row {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .project-list {
    gap: 46px;
  }

  .case-band {
    margin-inline: 0;
    padding-inline: 0;
  }

  .case-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details article {
    border-left: 0;
    border-top: 1px solid var(--gold);
    padding: 18px 0 0;
  }
}
