:root {
  --ink: #151814;
  --muted: #5c625b;
  --paper: #efeee8;
  --paper-warm: #e4ded2;
  --surface: #f7f5ef;
  --surface-clean: #fffefa;
  --surface-glow: #f1eee5;
  --surface-strong: #d8d1c2;
  --green: #24372f;
  --green-dark: #101811;
  --blue: #405c61;
  --graphite: #3f403d;
  --timber: #34291f;
  --stone: #aea6a2;
  --tan: #847768;
  --red-direction: #a84f37;
  --yellow-direction: #c49b4b;
  --white-direction: #fbf7ea;
  --black-direction: #171713;
  --clay: #8f4d3b;
  --clay-dark: #6b3527;
  --gold: #c49b4b;
  --line: #cbc4b6;
  --line-strong: #a99f8c;
  --charcoal: #0d120e;
  --limestone: #f4f2ec;
  --shadow: 0 26px 68px rgba(13, 18, 14, 0.16);
  --shadow-soft: 0 14px 34px rgba(13, 18, 14, 0.09);
  --shadow-tight: 0 7px 18px rgba(13, 18, 14, 0.07);
  --shadow-deep: 0 34px 88px rgba(8, 13, 10, 0.28);
  --radius: 8px;
  --container: 1140px;
  --transition: 150ms ease;
  --display-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --body-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(244, 242, 236, 0.98) 34rem, rgba(232, 226, 215, 0.96)),
    var(--limestone);
  color: var(--ink);
  font-family: var(--body-serif);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.74), transparent 26rem),
    linear-gradient(120deg, transparent 0 24%, rgba(196, 155, 75, 0.04) 48%, transparent 78%);
  opacity: 0.62;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 254, 250, 0.74), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(196, 155, 75, 0.05), transparent 26rem);
  opacity: 0.72;
  content: "";
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--clay);
}

:focus-visible {
  outline: 3px solid var(--yellow-direction);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.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;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

:target {
  scroll-margin-top: 112px;
}

.section-anchor {
  display: block;
  position: relative;
  top: -112px;
  width: 0;
  height: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(246, 243, 236, 0.95));
  border-bottom: 1px solid rgba(86, 79, 66, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(13, 18, 14, 0.055);
}

.site-header::before {
  display: block;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(196, 155, 75, 0.7), transparent);
  content: "";
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.38rem;
  min-width: 0;
  color: var(--green-dark);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 5px;
  border: 1px solid rgba(23, 23, 19, 0.18);
  border-radius: 50%;
  background: var(--surface-clean);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72), var(--shadow-tight);
  overflow: hidden;
}

.brand-mark span {
  display: block;
}

.brand-mark span:nth-child(1) {
  background: var(--black-direction);
}

.brand-mark span:nth-child(2) {
  background: var(--red-direction);
}

.brand-mark span:nth-child(3) {
  background: var(--yellow-direction);
}

.brand-mark span:nth-child(4) {
  background: var(--white-direction);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 19, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 76px;
  max-width: min(268px, 42vw);
  object-fit: contain;
  border: 0;
  border-radius: 4px;
  background: transparent;
  filter: drop-shadow(0 7px 10px rgba(13, 18, 14, 0.07));
}

.brand-name {
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.12;
}

.brand-subtitle {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.desktop-nav,
.header-actions,
.button-row,
.section-actions,
.footer-links,
.social-links,
.cta-actions,
.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header-actions {
  flex-wrap: nowrap;
}

.desktop-nav a,
.nav-summary,
.mobile-nav a,
.footer-links a {
  color: var(--ink);
  font-family: var(--sans);
  text-decoration: none;
  font-weight: 700;
}

.desktop-nav .nav-link,
.desktop-nav .nav-summary {
  position: relative;
  padding: 0.72rem 0.1rem;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.desktop-nav .nav-link::after,
.desktop-nav .nav-summary::after {
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  bottom: 0.54rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 150ms ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link[aria-current="page"]::after,
.desktop-nav .nav-group[data-active="true"] > .nav-summary::after,
.desktop-nav .nav-group:focus-within > .nav-summary::after,
.desktop-nav .nav-group:hover > .nav-summary::after {
  transform: scaleX(1);
}

.desktop-nav .nav-link[aria-current="page"],
.desktop-nav .nav-group[data-active="true"] > .nav-summary {
  color: var(--green-dark);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  cursor: pointer;
}

.nav-summary::before {
  display: none;
}

.nav-summary span {
  min-width: 0;
}

.nav-summary span::after {
  display: inline-block;
  margin-left: 0.38rem;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  width: 0.42rem;
  height: 0.42rem;
  transform: translateY(-0.16rem) rotate(45deg);
  content: "";
}

.nav-dropdown {
  display: grid;
  gap: 0.1rem;
}

.desktop-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 80;
  min-width: 250px;
  padding: 0.65rem;
  border: 1px solid rgba(21, 24, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 24px 54px rgba(13, 18, 14, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.desktop-nav .nav-dropdown::before {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.9), rgba(244, 242, 236, 0.24));
  content: "";
}

.desktop-nav .nav-group:hover .nav-dropdown,
.desktop-nav .nav-group:focus-within .nav-dropdown,
.desktop-nav .nav-group[open] .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-dropdown-link {
  display: block;
  padding: 0.72rem 0.78rem;
  border-radius: 5px;
  color: var(--green-dark);
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: none;
}

.desktop-nav .nav-dropdown-link:hover,
.desktop-nav .nav-dropdown-link:focus-visible,
.desktop-nav .nav-dropdown-link[aria-current="page"] {
  background: rgba(16, 24, 17, 0.07);
  color: var(--green-dark);
  outline: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 0.78rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.button > span:first-child {
  min-width: 0;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 0.65rem;
}

.button-icon::before,
.button-icon::after {
  position: absolute;
  content: "";
}

.button-icon::before {
  left: 0;
  right: 0.08rem;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: currentColor;
}

.button-icon::after {
  right: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.button-primary {
  background: linear-gradient(180deg, #263a31, #14231b);
  color: #fff;
  box-shadow: 0 14px 26px rgba(13, 18, 14, 0.18);
}

.button-primary:hover {
  background: linear-gradient(180deg, #30483d, #17291f);
  color: #fff;
}

.mobile-nav .button-primary {
  color: #fff;
}

.button-secondary {
  background: rgba(255, 254, 250, 0.72);
  border-color: rgba(21, 24, 20, 0.18);
  color: var(--green-dark);
  box-shadow: 0 7px 16px rgba(13, 18, 14, 0.045);
}

.button-secondary:hover {
  border-color: var(--clay);
  color: var(--clay-dark);
}

.button-primary::before {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  background: rgba(244, 242, 236, 0.94);
  content: "";
  -webkit-mask: url("/assets/img/brand/four-directions-brand-mark.png") center / contain no-repeat;
  mask: url("/assets/img/brand/four-directions-brand-mark.png") center / contain no-repeat;
}

.facebook-link {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(21, 24, 20, 0.18);
  border-radius: 6px;
  background: rgba(255, 254, 250, 0.72);
  color: #1877f2;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(13, 18, 14, 0.045);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.facebook-link:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 119, 242, 0.46);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.13);
}

.facebook-link-mark {
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
}

.facebook-link-mark svg {
  display: block;
  width: 0.78rem;
  height: 1.1rem;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 23, 19, 0.16);
  border-radius: 6px;
  background: rgba(255, 254, 250, 0.82);
  cursor: pointer;
  box-shadow: var(--shadow-tight);
}

.menu-button-lines,
.menu-button-lines::before,
.menu-button-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  content: "";
}

.menu-button-lines::before {
  transform: translateY(-7px);
}

.menu-button-lines::after {
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.98);
}

.mobile-nav[data-open="true"] {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.75rem 1rem;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0.72rem 0;
}

.mobile-nav .nav-group {
  border-bottom: 1px solid rgba(21, 24, 20, 0.08);
}

.mobile-nav .nav-summary {
  width: 100%;
  min-height: 46px;
  justify-content: space-between;
  padding: 0.72rem 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.mobile-nav .nav-dropdown {
  padding: 0 0 0.62rem 0.75rem;
}

.mobile-nav .nav-dropdown-link {
  min-height: 40px;
  padding: 0.56rem 0;
  color: rgba(21, 24, 20, 0.76);
  font-size: 0.93rem;
}

body[data-route="/"] .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 9, 0.5), rgba(8, 12, 9, 0.1));
  border-bottom: 1px solid rgba(255, 253, 246, 0.2);
  box-shadow: none;
}

body[data-route="/"] .site-header::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 253, 246, 0.34), rgba(196, 155, 75, 0.76), rgba(255, 253, 246, 0.34), transparent);
}

body[data-route="/"] .brand {
  padding: 0.32rem 0.52rem;
  border: 1px solid rgba(255, 253, 246, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 14px 34px rgba(8, 12, 9, 0.2);
}

body[data-route="/"] .desktop-nav .nav-link,
body[data-route="/"] .desktop-nav .nav-summary {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

body[data-route="/"] .desktop-nav .nav-link[aria-current="page"],
body[data-route="/"] .desktop-nav .nav-group[data-active="true"] > .nav-summary {
  color: #fff;
}

body[data-route="/"] .header-actions .button-primary {
  background: rgba(255, 253, 246, 0.96);
  color: var(--green-dark);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

body[data-route="/"] .header-actions .button-primary::before {
  background: var(--green-dark);
}

body[data-route="/"] .header-actions .button-secondary,
body[data-route="/"] .facebook-link {
  background: rgba(8, 12, 9, 0.2);
  border-color: rgba(255, 253, 246, 0.34);
  color: #fff;
  box-shadow: none;
}

body[data-route="/"] .facebook-link-mark {
  background: #fff;
  color: #1877f2;
}

body[data-route="/"] .mobile-nav {
  background: rgba(247, 245, 239, 0.99);
}

body[data-route="/"] .mobile-nav a {
  color: var(--ink);
  text-shadow: none;
}

.home-photo-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 8.5rem 0 5.7rem;
  background: var(--green-dark);
  color: #fff;
}

.home-photo-hero-media,
.home-photo-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-photo-hero-media {
  z-index: 0;
}

.home-photo-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-slide-focal, center center);
  opacity: 0;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.006);
  transition:
    opacity 1100ms ease,
    transform 6200ms ease;
}

.home-photo-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-photo-hero-overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse at 27% 52%, rgba(8, 12, 9, 0.62) 0%, rgba(8, 12, 9, 0.38) 34%, rgba(8, 12, 9, 0) 64%),
    linear-gradient(90deg, rgba(8, 12, 9, 0.64) 0%, rgba(8, 12, 9, 0.4) 38%, rgba(8, 12, 9, 0.1) 72%, rgba(8, 12, 9, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 12, 9, 0.23) 0%, rgba(8, 12, 9, 0.03) 36%, rgba(8, 12, 9, 0.34) 100%);
}

.home-photo-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(92svh - 14.2rem);
  display: flex;
  align-items: center;
}

.home-photo-hero-copy {
  max-width: 640px;
  margin-left: clamp(0rem, 2.6vw, 2rem);
  animation: heroCopyIn 620ms cubic-bezier(0.2, 0.78, 0.18, 1) both;
}

.home-photo-hero .eyebrow {
  margin-bottom: 0.88rem;
  color: rgba(255, 253, 246, 0.82);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.home-photo-hero h1 {
  max-width: 11ch;
  margin-bottom: 0.72rem;
  color: #fff;
  font-size: 4.05rem;
  font-weight: 500;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.home-photo-hero p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(255, 253, 246, 0.86);
  font-family: var(--sans);
  font-size: 1.22rem;
  line-height: 1.48;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.home-photo-hero .button-row {
  margin-top: 0.9rem;
}

.home-photo-hero .button-primary {
  background: rgba(255, 253, 246, 0.98);
  color: var(--green-dark);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.home-photo-hero .button-primary::before {
  background: var(--green-dark);
}

.home-photo-hero .button-secondary {
  background: rgba(255, 253, 246, 0.13);
  border-color: rgba(255, 253, 246, 0.44);
  color: #fff;
  box-shadow: none;
}

.page-photo-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem 0 5rem;
  background: var(--green-dark);
  color: #fff;
}

.page-photo-hero-media,
.page-photo-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-photo-hero-media {
  z-index: 0;
}

.page-photo-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--page-hero-focal, center center);
  opacity: 0;
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.006);
  transition:
    opacity 1100ms ease,
    transform 6800ms ease;
}

.page-photo-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.page-photo-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 9, 0.74) 0%, rgba(8, 12, 9, 0.46) 42%, rgba(8, 12, 9, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 12, 9, 0.26) 0%, rgba(8, 12, 9, 0.06) 40%, rgba(8, 12, 9, 0.58) 100%);
}

.page-photo-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(74svh - 13rem);
  display: flex;
  align-items: flex-end;
}

.page-photo-hero-copy {
  max-width: 700px;
  animation: heroCopyIn 620ms cubic-bezier(0.2, 0.78, 0.18, 1) both;
}

.page-photo-hero .eyebrow {
  margin-bottom: 0.8rem;
  color: rgba(255, 253, 246, 0.82);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.page-photo-hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.page-photo-hero p {
  max-width: 36ch;
  margin-bottom: 0;
  color: rgba(255, 253, 246, 0.86);
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1.5;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.page-photo-hero .button-row {
  margin-top: 1.45rem;
}

.page-photo-hero .button-primary {
  background: rgba(255, 253, 246, 0.98);
  color: var(--green-dark);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.page-photo-hero .button-primary::before {
  background: var(--green-dark);
}

.page-photo-hero .button-secondary {
  background: rgba(255, 253, 246, 0.13);
  border-color: rgba(255, 253, 246, 0.44);
  color: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.9rem 0 4.7rem;
  background:
    linear-gradient(118deg, rgba(16, 24, 17, 0.99) 0 52%, rgba(29, 36, 29, 0.98) 52% 100%),
    linear-gradient(180deg, rgba(13, 18, 14, 0.98), rgba(24, 31, 24, 0.98));
  border-bottom: 1px solid rgba(244, 242, 236, 0.1);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.055), transparent 32%),
    linear-gradient(125deg, transparent 0 48%, rgba(196, 155, 75, 0.075) 68%, transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(13, 18, 14, 0.34)),
    linear-gradient(90deg, rgba(13, 18, 14, 0.2), transparent 58%);
  content: "";
}

.hero-color-rail {
  position: absolute;
  top: 1.45rem;
  left: max(1rem, calc((100% - var(--container)) / 2));
  z-index: 1;
  width: 112px;
  height: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0.55;
  box-shadow: none;
}

.hero-color-rail span:nth-child(1) {
  background: var(--black-direction);
}

.hero-color-rail span:nth-child(2) {
  background: var(--red-direction);
}

.hero-color-rail span:nth-child(3) {
  background: var(--yellow-direction);
}

.hero-color-rail span:nth-child(4) {
  background: var(--white-direction);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  gap: clamp(2.75rem, 6vw, 5.4rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 640px;
  color: #fff;
  animation: heroCopyIn 620ms cubic-bezier(0.2, 0.78, 0.18, 1) both;
}

.brand-seal {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 246, 0.62);
  border-radius: 9px;
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 16px 34px rgba(4, 13, 10, 0.18);
}

.brand-seal img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.hero-brand-seal,
.portfolio-brand-seal,
.cta-brand-seal {
  margin-bottom: 1rem;
}

.hero-brand-seal {
  display: none;
}

.hero-copy .eyebrow,
.section-dark .eyebrow,
.cta-section .eyebrow,
.footer-cta .eyebrow {
  color: var(--yellow-direction);
}

.hero-lede,
.hero-copy > p {
  max-width: 44ch;
  color: rgba(244, 242, 236, 0.82);
  font-size: 1.12rem;
}

.hero-media {
  position: relative;
  isolation: isolate;
  animation: none;
}

.hero-media::before {
  position: absolute;
  inset: 14% -2% -10% 8%;
  z-index: -1;
  pointer-events: none;
  border-radius: 48%;
  background:
    radial-gradient(closest-side, rgba(0, 0, 0, 0.34), transparent 68%);
  filter: blur(14px);
  opacity: 0.58;
  content: "";
}

.hero-photo-shell {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 236, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(16, 37, 30, 0.86), rgba(36, 29, 19, 0.78)),
    var(--green-dark);
  box-shadow:
    0 42px 100px rgba(8, 13, 10, 0.32),
    0 12px 34px rgba(0, 0, 0, 0.16);
  animation: photoMaskIn 620ms cubic-bezier(0.2, 0.78, 0.18, 1) 90ms both;
  isolation: isolate;
}

.hero-photo-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 24, 17, 0.02), rgba(16, 24, 17, 0.26)),
    linear-gradient(90deg, rgba(13, 18, 14, 0.24), transparent 38%);
  content: "";
}

.hero-photo-shell::before,
.photo-frame::before {
  position: absolute;
  inset: 0.8rem auto auto 0.8rem;
  z-index: 2;
  width: 72px;
  height: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(244, 242, 236, 0.6));
  content: "";
}

.hero-photo-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 180ms ease,
    transform 1200ms ease;
}

[data-photo-rotator]:not([data-rotator-ready="true"]) .photo-rotator-slide {
  transition: none;
}

.hero-photo-shell img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: photoDrift 7800ms ease both;
}

.hero-media-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  max-width: min(28ch, calc(100% - 2rem));
  margin: 0;
  padding: 0.5rem 0.66rem;
  border: 1px solid rgba(244, 242, 236, 0.22);
  border-radius: 6px;
  background: rgba(13, 18, 14, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 20px rgba(23, 23, 19, 0.18);
}

.check-list {
  display: grid;
  gap: 0.48rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--green-dark);
  font-weight: 800;
}

.check-list li::before {
  flex: 0 0 auto;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.48rem;
  background: var(--yellow-direction);
  border: 2px solid rgba(23, 23, 19, 0.18);
  border-radius: 50%;
  content: "";
}

.project-media,
.photo-frame {
  margin: 0;
}

@keyframes photoDrift {
  from {
    object-position: 55% center;
    transform: scale(1);
  }

  to {
    object-position: 45% center;
    transform: scale(1.018);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0.72;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes photoMaskIn {
  from {
    clip-path: inset(0 0 18% 0);
    opacity: 0.78;
    transform: translateY(10px);
  }

  to {
    clip-path: inset(0);
    opacity: 1;
    transform: none;
  }
}

@keyframes storyDrift {
  from {
    object-position: 54% center;
    transform: scale(1.01);
  }

  to {
    object-position: 46% center;
    transform: scale(1.022);
  }
}

@keyframes backgroundBreathe {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-1.2rem, 0.8rem, 0) scale(1.02);
  }
}

@keyframes imageFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-block: 0 0.76rem;
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 {
  max-width: 16.4ch;
  color: #fff;
  font-size: 3.24rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-block: 0 1rem;
  color: var(--muted);
}

.hero-page {
  padding: 5.2rem 0 4.9rem;
}

.hero-page .hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(390px, 1.12fr);
  gap: clamp(2.5rem, 5vw, 4.8rem);
}

.hero-page h1 {
  max-width: 13.8ch;
  font-size: 3.6rem;
}

.hero-page .hero-photo-shell {
  aspect-ratio: 16 / 9.7;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 5.45rem 0;
  background: var(--paper);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.34), transparent 42%),
    linear-gradient(132deg, rgba(196, 155, 75, 0.03), transparent 52%);
  opacity: 0.72;
  content: "";
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.98), rgba(232, 226, 216, 0.96)),
    var(--paper-warm);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -1px rgba(23, 23, 19, 0.06);
}

.section-craft {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(247, 245, 239, 0.98)),
    var(--limestone);
}

.section-dark {
  background:
    linear-gradient(135deg, #101811, #17241c 58%, #211b15);
  color: #fff;
}

.section-dark::after {
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.04), transparent 36%),
    linear-gradient(132deg, transparent 0 48%, rgba(196, 155, 75, 0.05) 72%, transparent);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.section-dark .section-heading p,
.section-dark .project-card p {
  color: rgba(255, 253, 246, 0.78);
}

.section-process {
  background:
    linear-gradient(180deg, var(--paper-warm), var(--paper));
}

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

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.direction-panel {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 10px 24px rgba(13, 18, 14, 0.045);
}

.direction-panel::before {
  display: block;
  height: 2px;
  margin: -1.35rem -1.35rem 1rem;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.84), rgba(244, 242, 236, 0.4));
  content: "";
}

.service-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1.2rem 0 1.75rem;
  border-block: 1px solid rgba(23, 23, 19, 0.14);
}

.service-route article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  min-height: 0;
  padding: 1.05rem 1.1rem;
  border: 0;
  border-right: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 150ms ease;
}

.service-route article::after {
  display: none;
}

.service-route article:hover {
  background: rgba(255, 253, 246, 0.38);
}

.service-route article:last-child {
  border-right: 0;
}

.route-step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 950;
  box-shadow: inset 0 0 0 4px rgba(255, 253, 246, 0.12);
}

.service-route article:nth-child(1) .route-step {
  background: var(--black-direction);
}

.service-route article:nth-child(2) .route-step {
  background: var(--red-direction);
}

.service-route article:nth-child(3) .route-step {
  background: var(--yellow-direction);
  color: var(--ink);
}

.trust-bar {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(19, 37, 29, 0.98), rgba(19, 37, 29, 0.95));
}

.trust-grid,
.service-grid,
.project-grid,
.values-grid,
.verification-grid,
.contact-cards {
  display: grid;
  gap: 1.1rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-inline: 1px solid rgba(255, 253, 246, 0.12);
}

.card,
.service-card,
.project-card,
.mini-card,
.notice-card,
.contact-card,
.empty-state-panel,
.verification-grid article,
.feature-list article {
  position: relative;
  min-width: 0;
  background: rgba(255, 254, 250, 0.84);
  border: 1px solid rgba(21, 24, 20, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(13, 18, 14, 0.055);
}

.card,
.mini-card,
.notice-card,
.contact-card,
.verification-grid article,
.feature-list article {
  padding: 1.3rem;
}

.trust-strip article {
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 253, 246, 0.12);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip h3,
.trust-strip p {
  color: #fff;
}

.trust-strip h3 {
  margin-bottom: 0.28rem;
  font-size: 1rem;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 253, 246, 0.76);
  font-size: 0.94rem;
}

.craft-intro-section {
  position: relative;
  overflow: hidden;
}

.about-approved-copy {
  max-width: 64ch;
}

.about-approved-copy p {
  color: var(--green-dark);
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-approved-copy p:first-of-type {
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-size: 1.42rem;
  line-height: 1.28;
}

.about-approved-copy p:last-child {
  margin-bottom: 0;
}

.craft-intro-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(196, 155, 75, 0.04), transparent 44%),
    linear-gradient(290deg, rgba(64, 92, 97, 0.035), transparent 52%);
  content: "";
}

.craft-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.craft-intro .section-heading {
  margin-bottom: 1.2rem;
}

.craft-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(21, 24, 20, 0.12);
}

.craft-notes article {
  padding: 1rem 1rem 1rem 0;
  border-right: 1px solid rgba(21, 24, 20, 0.1);
}

.craft-notes article + article {
  padding-left: 1rem;
}

.craft-notes article:last-child {
  border-right: 0;
}

.craft-notes h3 {
  margin-bottom: 0.35rem;
  font-size: 1.06rem;
}

.craft-notes p {
  margin-bottom: 0;
}

.craft-intro-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0.62rem;
  border: 1px solid rgba(21, 24, 20, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 24px 56px rgba(13, 18, 14, 0.13);
}

.craft-intro-photo::before {
  position: absolute;
  inset: 0.72rem 0.72rem auto;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(244, 242, 236, 0.6));
  content: "";
}

.craft-intro-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 520ms ease;
}

.craft-intro-photo figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 750;
}

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

.service-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-dense {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.service-editorial-card {
  position: relative;
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.82);
  box-shadow: var(--shadow-tight);
}

.service-editorial-card::before {
  display: block;
  width: 3rem;
  height: 0.22rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(90deg, var(--black-direction) 0 25%, var(--red-direction) 25% 50%, var(--yellow-direction) 50% 75%, var(--white-direction) 75% 100%);
  content: "";
}

.service-editorial-card p {
  margin-bottom: 0;
}

.service-card {
  min-height: 170px;
  overflow: hidden;
  padding: 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(244, 242, 236, 0.9));
  box-shadow: 0 12px 30px rgba(13, 18, 14, 0.055);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.service-card::after {
  position: absolute;
  inset: 1.1rem auto auto 1.45rem;
  width: 3.6rem;
  height: 2px;
  background: rgba(196, 155, 75, 0.7);
  content: "";
}

.service-card h3 {
  padding-top: 0.72rem;
}

.service-card-note {
  max-width: 32ch;
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(21, 24, 20, 0.1);
  color: rgba(21, 24, 20, 0.64);
  font-size: 0.94rem;
  overflow-wrap: break-word;
}

.service-card:nth-child(4n + 1)::after {
  background: rgba(21, 24, 20, 0.62);
}

.service-card:nth-child(4n + 2)::after {
  background: rgba(143, 77, 59, 0.68);
}

.service-card:nth-child(4n + 3)::after {
  background: rgba(196, 155, 75, 0.78);
}

.service-card:nth-child(4n + 4)::after {
  background: rgba(64, 92, 97, 0.56);
  box-shadow: none;
}

.service-card:hover,
.project-card:hover,
.contact-card:hover,
.feature-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 155, 75, 0.42);
  box-shadow: 0 18px 42px rgba(13, 18, 14, 0.1);
}

.mini-card::before,
.notice-card::before,
.contact-card::before,
.feature-list article::before,
.verification-grid article::before {
  display: block;
  width: 2rem;
  height: 0.12rem;
  margin-bottom: 1rem;
  background: var(--gold);
  content: "";
}

.card-link,
.text-link {
  color: var(--clay);
  font-family: var(--sans);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supporting-service-block {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(23, 23, 19, 0.14);
}

.supporting-service-block h3 {
  margin-bottom: 1rem;
}

.quiet-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(23, 23, 19, 0.12);
}

.quiet-service-list article {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid rgba(23, 23, 19, 0.12);
}

.quiet-service-list h4 {
  margin: 0 0 0.35rem;
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.12;
}

.quiet-service-list p {
  margin-bottom: 0.45rem;
}

.project-grid-editorial {
  align-items: stretch;
}

.project-card {
  overflow: hidden;
  display: grid;
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.project-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-media {
  position: relative;
  background: var(--green-dark);
}

.project-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(16, 24, 17, 0.18)),
    linear-gradient(90deg, rgba(13, 18, 14, 0.14), transparent 28%);
  content: "";
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-featured img {
  aspect-ratio: 16 / 10;
}

.project-card-body {
  padding: 1.3rem;
}

.project-card-kicker {
  margin-bottom: 0.45rem;
  color: var(--clay-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card-body p {
  color: var(--muted);
}

.portfolio-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: stretch;
}

.portfolio-variety-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid rgba(23, 23, 19, 0.14);
  border-bottom: 1px solid rgba(23, 23, 19, 0.14);
}

.portfolio-variety-strip article {
  padding: 1.05rem 1rem 1.05rem 0;
  border-right: 1px solid rgba(23, 23, 19, 0.12);
}

.portfolio-variety-strip article:last-child {
  border-right: 0;
}

.portfolio-variety-strip span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 850;
}

.portfolio-variety-strip strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-size: 1.08rem;
  line-height: 1.12;
}

.portfolio-variety-strip p {
  max-width: 26ch;
  margin: 0;
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.94rem;
}

.portfolio-chapter-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.74), rgba(226, 220, 210, 0.38));
}

.portfolio-chapter-section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(236, 232, 224, 0.42), rgba(255, 254, 250, 0.74));
}

.portfolio-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: start;
}

.portfolio-chapter-reverse .portfolio-chapter {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
}

.portfolio-chapter-reverse .portfolio-chapter-copy {
  order: 2;
}

.portfolio-chapter-copy {
  position: relative;
  padding: 0.25rem 0 1rem;
}

.portfolio-chapter-copy h2 {
  max-width: 10ch;
  margin-bottom: 0.85rem;
}

.portfolio-chapter-copy p:not(.eyebrow) {
  max-width: 33ch;
  color: rgba(23, 33, 29, 0.7);
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-photo {
  overflow: hidden;
  grid-column: span 3;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: var(--radius);
  background: #142c24;
  box-shadow: 0 22px 54px rgba(13, 18, 14, 0.14);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.portfolio-photo-lead {
  grid-column: span 6;
}

.portfolio-photo figure {
  display: grid;
  margin: 0;
  min-height: 100%;
}

.portfolio-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.portfolio-photo-lead img {
  aspect-ratio: 16 / 9;
}

.portfolio-photo figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(20, 44, 36, 0.96), rgba(11, 25, 20, 0.98));
  color: rgba(255, 253, 246, 0.8);
}

.portfolio-photo figcaption span {
  color: rgba(214, 166, 58, 0.9);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-photo figcaption strong {
  color: #fff;
  font-family: var(--display-serif);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.1;
}

.portfolio-photo figcaption em {
  max-width: 48ch;
  color: rgba(255, 253, 246, 0.74);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.55;
}

.portfolio-photo:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 155, 75, 0.36);
  box-shadow: 0 18px 44px rgba(13, 18, 14, 0.11);
}

.portfolio-photo:hover img {
  transform: scale(1.025);
}

.portfolio-hero-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 6.2rem;
  background:
    linear-gradient(135deg, rgba(16, 24, 17, 0.99), rgba(20, 31, 24, 0.99) 58%, rgba(13, 18, 14, 0.99)),
    linear-gradient(180deg, #101811, #182820);
  color: var(--white-direction);
}

.portfolio-hero-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 242, 236, 0.04) 0, transparent 34%),
    linear-gradient(180deg, transparent 0, rgba(8, 13, 10, 0.42) 100%);
  content: "";
}

.portfolio-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}

.portfolio-hero-copy {
  max-width: 620px;
}

.portfolio-brand-seal {
  border-color: rgba(214, 166, 64, 0.34);
}

.portfolio-hero-copy .eyebrow {
  color: var(--gold);
}

.portfolio-hero-copy h1 {
  max-width: 14.5ch;
  color: #fff;
}

.portfolio-hero-copy .hero-lede {
  max-width: 41ch;
  color: rgba(255, 253, 246, 0.78);
}

.portfolio-proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0;
  border-block: 1px solid rgba(255, 253, 246, 0.15);
}

.portfolio-proof-points div {
  padding: 0.95rem 0.9rem 0.95rem 0;
  border-right: 1px solid rgba(255, 253, 246, 0.12);
}

.portfolio-proof-points div:last-child {
  border-right: 0;
}

.portfolio-proof-points dt {
  color: rgba(214, 166, 58, 0.9);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-proof-points dd {
  margin: 0.28rem 0 0;
  color: rgba(255, 253, 246, 0.84);
  font-size: 0.98rem;
  line-height: 1.35;
}

.portfolio-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 24px 58px rgba(13, 18, 14, 0.15);
}

.portfolio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.portfolio-image figcaption {
  display: grid;
  gap: 0.28rem;
  padding: 0.86rem 0.95rem;
  background: linear-gradient(180deg, rgba(16, 37, 30, 0.98), rgba(9, 22, 17, 0.98));
  color: rgba(255, 253, 246, 0.78);
}

.portfolio-image figcaption span,
.portfolio-sequence-card .eyebrow,
.portfolio-support-card .eyebrow,
.portfolio-detail-card .eyebrow {
  color: rgba(214, 166, 58, 0.92);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-image figcaption strong {
  color: #fff;
  font-family: var(--display-serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.12;
}

.portfolio-image figcaption em {
  color: rgba(255, 253, 246, 0.75);
  max-width: 42ch;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.36;
}

.portfolio-hero-image {
  border-color: rgba(255, 253, 246, 0.38);
  box-shadow: 0 34px 90px rgba(9, 22, 17, 0.26);
}

.portfolio-hero-image img {
  aspect-ratio: 5 / 4;
}

.portfolio-feature-section {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(239, 235, 226, 0.92)),
    var(--paper);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.7),
    inset 0 -1px rgba(23, 23, 19, 0.06);
}

.portfolio-feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.28fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.7rem;
}

.portfolio-feature-heading::after {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 77, 59, 0.44), rgba(196, 155, 75, 0.72), transparent);
  content: "";
}

.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.portfolio-feature-main img {
  aspect-ratio: 16 / 11;
}

.portfolio-feature-main {
  min-height: 100%;
}

.portfolio-sequence {
  display: grid;
  gap: 1rem;
}

.portfolio-sequence-card,
.portfolio-support-card,
.portfolio-detail-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(23, 23, 19, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 12px 30px rgba(13, 18, 14, 0.065);
}

.portfolio-sequence-card {
  position: relative;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  min-height: 156px;
}

.portfolio-sequence-number {
  position: absolute;
  left: 0.8rem;
  top: 0.7rem;
  z-index: 1;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(16, 37, 30, 0.88);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
}

.portfolio-sequence-card img,
.portfolio-support-card img,
.portfolio-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.portfolio-sequence-card > div,
.portfolio-support-card > div,
.portfolio-detail-card > div {
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding: 0.9rem;
}

.portfolio-sequence-card h3,
.portfolio-support-card h3,
.portfolio-detail-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--display-serif);
  font-size: 1.16rem;
  line-height: 1.13;
}

.portfolio-sequence-card p:not(.eyebrow),
.portfolio-support-card p:not(.eyebrow),
.portfolio-detail-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.9rem;
  line-height: 1.34;
}

.portfolio-chapter-section,
.portfolio-chapter-section:not(.portfolio-chapter-alt) {
  background:
    linear-gradient(180deg, rgba(16, 24, 17, 0.98), rgba(20, 31, 24, 0.98)),
    var(--green-dark);
  color: #fff;
  box-shadow:
    inset 0 1px rgba(255, 253, 246, 0.08),
    inset 0 -1px rgba(0, 0, 0, 0.22);
}

.portfolio-chapter-alt,
.portfolio-chapter-section.portfolio-chapter-alt {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(239, 235, 226, 0.94)),
    var(--paper);
  color: var(--ink);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -1px rgba(23, 23, 19, 0.06);
}

.portfolio-editorial-chapter {
  display: grid;
  gap: 1.5rem;
}

.portfolio-chapter-intro {
  max-width: 760px;
}

.portfolio-chapter-section .section-heading h2 {
  color: #fff;
}

.portfolio-chapter-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.72);
}

.portfolio-chapter-alt .section-heading h2 {
  color: var(--green-dark);
}

.portfolio-chapter-alt .section-heading p:not(.eyebrow) {
  color: rgba(23, 33, 29, 0.68);
}

.portfolio-chapter-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1rem;
  align-items: stretch;
}

.portfolio-chapter-lead {
  border-color: rgba(255, 253, 246, 0.18);
}

.portfolio-chapter-alt .portfolio-chapter-lead {
  border-color: rgba(23, 23, 19, 0.14);
}

.portfolio-chapter-lead img {
  aspect-ratio: 16 / 12;
}

.portfolio-support-grid {
  display: grid;
  gap: 1rem;
}

.portfolio-support-card {
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1fr);
  background: rgba(255, 254, 250, 0.94);
}

.portfolio-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(239, 235, 226, 0.92)),
    var(--paper);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -1px rgba(23, 23, 19, 0.06);
}

.portfolio-detail-heading {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-detail-card {
  grid-template-rows: auto 1fr;
}

.portfolio-detail-card img {
  aspect-ratio: 4 / 3;
}

.portfolio-image:hover img,
.portfolio-sequence-card:hover img,
.portfolio-support-card:hover img,
.portfolio-detail-card:hover img {
  transform: scale(1.025);
}

.section-gallery-feature {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 7vw, 6.8rem);
  border-block: 1px solid rgba(196, 155, 75, 0.18);
  background:
    radial-gradient(circle at 74% 18%, rgba(196, 155, 75, 0.12), transparent 34rem),
    linear-gradient(140deg, #101811 0%, #17241c 56%, #16120e 100%);
}

.section-gallery-feature::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.055), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 46%);
  content: "";
}

.testimonial-section {
  overflow: hidden;
  border-block: 1px solid rgba(244, 242, 236, 0.1);
  background:
    radial-gradient(circle at 12% 16%, rgba(214, 166, 58, 0.16), transparent 28%),
    linear-gradient(135deg, #101811, #17251c 56%, #211b15);
}

.testimonial-section::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.04), transparent 38%),
    linear-gradient(128deg, transparent 0 46%, rgba(214, 166, 58, 0.08) 78%, transparent);
}

.testimonial-shell {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.3rem);
}

.testimonial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.4fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 253, 246, 0.14);
}

.testimonial-intro h2 {
  max-width: 10.8ch;
  margin: 0;
  color: #fff;
  font-size: 3.2rem;
}

.testimonial-intro p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0 0 0.25rem;
  color: rgba(255, 253, 246, 0.72);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: stretch;
}

.testimonial-feature,
.testimonial-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.testimonial-feature {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: clamp(1.45rem, 3vw, 2.2rem);
}

.testimonial-feature::before,
.testimonial-card::before {
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, rgba(214, 166, 58, 0.92), rgba(255, 253, 246, 0.18));
  content: "";
}

.testimonial-feature blockquote,
.testimonial-card blockquote {
  margin: 0;
}

.testimonial-feature blockquote p,
.testimonial-card blockquote p {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: 0;
}

.testimonial-feature blockquote p {
  max-width: 14ch;
  font-size: 2.35rem;
  line-height: 1.04;
}

.testimonial-feature figcaption,
.testimonial-card figcaption {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.45rem;
}

.testimonial-feature figcaption span,
.testimonial-card figcaption span {
  color: #fff;
  font-weight: 850;
}

.testimonial-feature figcaption small,
.testimonial-card figcaption small {
  color: rgba(255, 253, 246, 0.6);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 1.1rem;
}

.testimonial-card:last-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.testimonial-card blockquote p {
  font-size: 1.32rem;
  line-height: 1.18;
}

.testimonial-card:last-child blockquote p {
  max-width: 28ch;
}

.testimonial-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.35rem;
}

.testimonial-cta p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 253, 246, 0.76);
}

.testimonial-section .button-secondary {
  background: transparent;
  border-color: rgba(244, 242, 236, 0.34);
  color: #fff;
}

.testimonial-teaser-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(214, 166, 58, 0.11), transparent 30%),
    linear-gradient(135deg, #101811, #17251c 58%, #1c1812);
}

.testimonial-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.6rem);
  align-items: center;
}

.testimonial-teaser .section-heading {
  margin-bottom: 1.1rem;
}

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

.testimonial-teaser-card {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.testimonial-teaser-card::before {
  display: block;
  width: 3rem;
  height: 2px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, rgba(214, 166, 58, 0.92), rgba(255, 253, 246, 0.18));
  content: "";
}

.testimonial-teaser-card blockquote {
  margin: 0;
}

.testimonial-teaser-card blockquote p {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.14;
}

.testimonial-teaser-card figcaption {
  display: grid;
  gap: 0.24rem;
  margin-top: 1.4rem;
}

.testimonial-teaser-card figcaption span {
  color: #fff;
  font-weight: 850;
}

.testimonial-teaser-card figcaption small {
  color: rgba(255, 253, 246, 0.62);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-index-section {
  padding-block: clamp(4.2rem, 8vw, 6.6rem) clamp(3.4rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(196, 155, 75, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(244, 242, 236, 0.96));
}

.testimonial-index {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.48fr);
  gap: clamp(1.8rem, 5vw, 4.4rem);
  align-items: center;
}

.testimonial-index .section-heading {
  margin-bottom: 0;
}

.testimonial-index-panel {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(21, 24, 20, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.92), rgba(239, 234, 224, 0.9));
  box-shadow: var(--shadow-soft);
}

.testimonial-index-panel > p {
  max-width: 34ch;
  margin: 0 0 1rem;
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.98rem;
}

.testimonial-index-label {
  margin: 0 0 1rem;
  color: var(--green-dark);
  font-family: var(--sans);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.testimonial-jump-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.56rem 0.78rem;
  border: 1px solid rgba(21, 24, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--green-dark);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.testimonial-jump-list a:hover,
.testimonial-jump-list a:focus-visible {
  background: #fffefa;
  border-color: rgba(196, 155, 75, 0.7);
  outline: 0;
}

.testimonial-letter-section {
  padding-block: clamp(3.4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 86% 6%, rgba(36, 55, 47, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(244, 242, 236, 0.98) 62%, rgba(232, 226, 215, 0.92)),
    var(--limestone);
}

.testimonial-letter-stage {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
}

.letter-masonry {
  column-count: 2;
  column-gap: clamp(1.2rem, 3vw, 2rem);
}

.letter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.6rem);
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid rgba(21, 24, 20, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(247, 243, 234, 0.96));
  box-shadow: 0 24px 66px rgba(13, 18, 14, 0.08);
}

.letter-masonry .letter-card {
  width: 100%;
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  break-inside: avoid;
  margin: 0 0 clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.letter-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(196, 155, 75, 0.18), transparent);
  content: "";
}

.letter-card-featured {
  border-color: rgba(196, 155, 75, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.99), rgba(244, 239, 229, 0.98));
  box-shadow: 0 30px 78px rgba(13, 18, 14, 0.12);
}

.letter-card-soft {
  background:
    linear-gradient(145deg, rgba(249, 246, 239, 0.99), rgba(236, 230, 218, 0.97));
}

.letter-card-meta {
  position: relative;
  border-right: 1px solid rgba(21, 24, 20, 0.1);
  padding-right: clamp(1rem, 2vw, 1.6rem);
}

.letter-masonry .letter-card-meta {
  border-right: 0;
  border-bottom: 1px solid rgba(21, 24, 20, 0.1);
  padding: 0 0 1rem;
}

.letter-card-meta h2 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.04;
}

.letter-card-meta p:not(.eyebrow) {
  margin: 0;
  color: rgba(23, 33, 29, 0.66);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 760;
}

.letter-kicker {
  margin: 0 0 1.15rem;
  color: var(--green-dark);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.letter-card-body blockquote {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.letter-card-body blockquote p {
  max-width: 74ch;
  margin: 0;
  color: rgba(23, 33, 29, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

.letter-masonry .letter-card-body blockquote p {
  font-size: 1rem;
  line-height: 1.68;
}

.letter-card-body footer {
  display: grid;
  gap: 0.22rem;
  margin-top: 1.55rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(21, 24, 20, 0.1);
}

.letter-card-body footer span {
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 750;
}

.letter-card-body footer small {
  color: rgba(23, 33, 29, 0.58);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-mosaic-block {
  position: relative;
  z-index: 1;
}

.mosaic-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.55rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(244, 242, 236, 0.14);
}

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

.section-dark .mosaic-heading .button-secondary {
  background: rgba(244, 242, 236, 0.08);
  border-color: rgba(244, 242, 236, 0.28);
  color: #fff;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 1rem;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  grid-column: span 1;
  min-height: 260px;
  border: 1px solid rgba(244, 242, 236, 0.16);
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 30px 76px rgba(8, 13, 10, 0.26);
  isolation: isolate;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.mosaic-card-1 {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}

.mosaic-card-2,
.mosaic-card-3 {
  grid-column: span 1;
}

.mosaic-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.mosaic-card::before {
  position: absolute;
  inset: 0.8rem auto auto 0.8rem;
  z-index: 2;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(244, 242, 236, 0.6));
  content: "";
}

.mosaic-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 24, 17, 0.04), rgba(16, 24, 17, 0.84)),
    linear-gradient(90deg, rgba(13, 18, 14, 0.28), transparent 42%);
  content: "";
}

.mosaic-card-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 1.1rem;
}

.mosaic-card h3,
.mosaic-card p {
  color: #fff;
}

.mosaic-card .eyebrow {
  color: rgba(255, 253, 246, 0.78);
}

.mosaic-card-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 246, 0.78);
}

.mosaic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 155, 75, 0.44);
  box-shadow: 0 34px 86px rgba(8, 13, 10, 0.28);
}

.mosaic-card:hover img {
  transform: scale(1.035);
}

.work-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}

.work-story-copy {
  align-self: center;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.work-story-copy .section-heading {
  margin-bottom: 0;
}

.work-story-copy .section-heading h2 {
  max-width: 9.5ch;
}

.work-story-copy .section-heading p:not(.eyebrow) {
  max-width: 35ch;
}

.work-story-copy .button-secondary {
  width: fit-content;
  background: rgba(244, 242, 236, 0.1);
  border-color: rgba(244, 242, 236, 0.32);
  color: #fff;
}

.work-story-brandmark {
  position: relative;
  display: grid;
  gap: 0.78rem;
  width: min(100%, 260px);
  min-height: 178px;
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-top: 1.05rem;
  border-top: 1px solid rgba(244, 242, 236, 0.16);
  color: rgba(244, 242, 236, 0.72);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.work-story-brandmark img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}

.work-story-brandmark span {
  max-width: 24ch;
}

.work-story-gallery {
  display: grid;
  gap: 1.05rem;
  min-width: 0;
}

.work-story-main {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 34vw, 480px);
  margin: 0;
  border: 1px solid rgba(244, 242, 236, 0.16);
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 34px 88px rgba(8, 13, 10, 0.3);
  isolation: isolate;
}

.work-story-main figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: grid;
  gap: 0.16rem;
  max-width: min(28ch, calc(100% - 2rem));
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(244, 242, 236, 0.2);
  border-radius: 6px;
  background: rgba(12, 21, 16, 0.72);
  backdrop-filter: blur(10px);
}

.work-story-main figcaption span {
  color: rgba(214, 166, 58, 0.94);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.work-story-main figcaption strong {
  color: #fff;
  font-family: var(--display-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.12;
}

.work-story-main::before {
  position: absolute;
  inset: 0.95rem auto auto 0.95rem;
  z-index: 3;
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(244, 242, 236, 0.6));
  content: "";
}

.work-story-main::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 44%, rgba(16, 24, 17, 0.38)),
    linear-gradient(90deg, rgba(13, 18, 14, 0.18), transparent 38%);
  content: "";
}

.work-story-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 420ms ease,
    transform 1800ms ease;
}

.work-story-slide.is-active {
  opacity: 1;
  animation: storyDrift 6400ms ease both;
}

.work-story-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.work-story-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.78rem;
  align-items: stretch;
  min-height: 0;
  padding: 0.62rem;
  border: 1px solid rgba(244, 242, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 242, 236, 0.075);
  box-shadow: 0 18px 46px rgba(8, 13, 10, 0.14);
}

.work-story-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 420ms ease;
}

.craft-intro-photo:hover img,
.photo-frame:hover img,
.work-story-card:hover img {
  transform: scale(1.025);
}

.work-story-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.03rem;
}

.work-story-card .eyebrow {
  margin-bottom: 0.28rem;
  color: rgba(255, 253, 246, 0.74);
  font-size: 0.68rem;
}

.empty-state-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem;
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(64, 92, 97, 0.08), rgba(196, 155, 75, 0.1)),
    var(--surface-clean);
}

.split-layout,
.form-layout,
.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: start;
}

.photo-feature {
  grid-template-columns: minmax(300px, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
}

.photo-feature-reverse .photo-frame {
  order: 2;
}

.photo-feature-copy {
  padding-block: 1rem;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  padding: 0.62rem;
  border: 1px solid rgba(21, 24, 20, 0.13);
  border-radius: var(--radius);
  background: var(--surface-clean);
  box-shadow: 0 24px 56px rgba(13, 18, 14, 0.13);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 520ms ease;
}

.photo-frame figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 750;
}

.quote-prep-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.15rem;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--green-dark) 0 55%, rgba(255, 254, 250, 0.94) 55% 100%);
  box-shadow: 0 24px 60px rgba(13, 18, 14, 0.14);
}

.quote-prep-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.84), rgba(244, 242, 236, 0.44));
  content: "";
}

.quote-prep-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.06), transparent 44%),
    linear-gradient(118deg, transparent 0 44%, rgba(255, 253, 246, 0.08) 68%, transparent);
  content: "";
}

.quote-prep-copy,
.quote-prep-photo {
  position: relative;
  z-index: 1;
}

.quote-prep-copy {
  display: grid;
  align-content: center;
  padding: 2rem;
}

.quote-prep-copy h2,
.quote-prep-copy p {
  color: #fff;
}

.quote-prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 1rem;
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}

.quote-prep-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 253, 246, 0.94);
  font-weight: 800;
}

.quote-prep-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--yellow-direction);
  content: "";
}

.quote-prep-photo {
  margin: 0;
  min-height: 360px;
  padding: 0.65rem;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.9);
  box-shadow: var(--shadow-soft);
}

.quote-prep-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 6px;
}

.stacked-cards {
  display: grid;
  gap: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps li {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid rgba(21, 24, 20, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.process-steps span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 950;
}

.process-steps li:nth-child(1) span {
  background: var(--black-direction);
}

.process-steps li:nth-child(2) span {
  background: var(--red-direction);
}

.process-steps li:nth-child(3) span {
  background: var(--yellow-direction);
  color: var(--ink);
}

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

.feature-section .feature-list article {
  min-height: 180px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pill-list,
.category-list,
.contact-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list span,
.category-list li,
.contact-proof-list span {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(21, 24, 20, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: none;
}

.faq-page,
.prose {
  max-width: 900px;
}

.faq-page {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 18px 50px rgba(13, 18, 14, 0.07);
}

.faq-group {
  margin-top: 2.25rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 10px 24px rgba(13, 18, 14, 0.045);
}

.faq-item h3 {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font: 760 1rem/1.35 var(--sans);
  text-align: left;
  cursor: pointer;
}

.faq-toggle:hover {
  background: rgba(214, 166, 58, 0.08);
}

.faq-answer {
  padding: 0 1.1rem 1.15rem;
}

.prose {
  padding: 2rem;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(247, 245, 239, 0.96));
  box-shadow: 0 18px 50px rgba(13, 18, 14, 0.07);
}

.prose h2 {
  margin-top: 2rem;
}

.contact-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  min-width: 0;
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 0.32rem;
  overflow: hidden;
}

.contact-card-mark {
  width: 46px;
  height: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(196, 155, 75, 0.92), rgba(64, 92, 97, 0.52));
}

.contact-card::before {
  display: none;
}

.contact-card a {
  color: var(--clay);
  font-family: var(--sans);
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card p,
.form-fallback a,
.site-footer a[href^="mailto:"] {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-conversion {
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border: 1px solid rgba(21, 24, 20, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.99), rgba(244, 240, 232, 0.97));
  box-shadow: 0 26px 70px rgba(13, 18, 14, 0.13);
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-dark);
  font-family: var(--sans);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem;
  border: 1px solid #aa9b84;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: 1rem/1.45 var(--sans);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 93, 102, 0.18);
  outline: none;
}

textarea {
  resize: vertical;
}

.field-hint,
.field-error,
.privacy-note,
.form-fallback {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
}

.field-error {
  min-height: 1.4em;
  color: #8f2a20;
  font-weight: 850;
}

.form-status {
  min-height: 1.5rem;
  color: #8f2a20;
  font-weight: 950;
}

.form-status[data-state="success"] {
  color: #1f6a3f;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-section {
  position: relative;
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, var(--green-dark), #1c2c23 58%, #211b15);
  color: #fff;
}

.cta-section::before,
.site-footer::before {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 155, 75, 0.72), transparent);
  content: "";
}

.cta-section::before {
  position: absolute;
  inset: 0 0 auto;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-brand-seal {
  width: 52px;
  height: 52px;
  border-color: rgba(214, 166, 64, 0.36);
}

.cta-section .button-secondary,
.site-footer .button-secondary {
  background: transparent;
  border-color: rgba(244, 242, 236, 0.34);
  color: #fff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #101811, #121f18 72%, #0b120e);
  color: #fff;
}

.site-footer::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.045), transparent 30%),
    linear-gradient(126deg, transparent 0 42%, rgba(196, 155, 75, 0.045) 76%, transparent);
  content: "";
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-cta-band {
  position: relative;
  border-block: 1px solid rgba(244, 242, 236, 0.13);
  background:
    radial-gradient(circle at 18% 22%, rgba(196, 155, 75, 0.12), transparent 24rem),
    linear-gradient(105deg, rgba(255, 253, 246, 0.07), rgba(255, 253, 246, 0.025) 48%, rgba(196, 155, 75, 0.06));
}

.footer-cta-band::before {
  position: relative;
  display: block;
  width: min(100%, var(--container));
  height: 1px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, rgba(196, 155, 75, 0.7), transparent);
  content: "";
}

.footer-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(1.55rem, 4vw, 2.45rem);
}

.footer-cta-mark {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(196, 155, 75, 0.34);
  border-radius: 50%;
  background: rgba(244, 242, 236, 0.08);
  box-shadow: inset 0 0 0 6px rgba(244, 242, 236, 0.035);
}

.footer-cta-mark img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-cta-copy {
  max-width: 680px;
}

.footer-cta h2 {
  margin-bottom: 0.2rem;
  font-size: 2.25rem;
}

.footer-cta .eyebrow {
  margin-bottom: 0.32rem;
}

.site-footer h2,
.site-footer p,
.site-footer a {
  color: #fff;
}

.site-footer .footer-muted,
.site-footer .footer-bottom p,
.footer-cta p {
  color: rgba(244, 242, 236, 0.76);
}

.footer-cta-actions {
  justify-content: flex-end;
}

.footer-cta-actions .button-primary {
  background: rgba(255, 253, 246, 0.98);
  color: var(--green-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.footer-cta-actions .button-primary::before {
  background: var(--green-dark);
}

.footer-brand-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 216px);
  margin-bottom: 1rem;
  padding: 0.54rem 0.64rem;
  border: 1px solid rgba(196, 155, 75, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.footer-brand-plate img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 84px;
  object-fit: contain;
}

.footer-brand-plate:hover {
  border-color: rgba(214, 166, 58, 0.5);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 3.4rem;
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0 1.7rem;
  border-top: 1px solid rgba(244, 242, 236, 0.14);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 0.55rem;
  }

  .header-actions .button-secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .home-photo-hero-copy,
  .page-photo-hero-copy,
  .hero-copy,
  .hero-media,
  .hero-media::before,
  .hero-photo-shell,
  .button,
  .facebook-link,
  .brand-seal,
  .service-card,
  .project-card,
  .footer-brand-plate,
  .contact-card,
  .mini-card,
  .notice-card,
  .mosaic-card,
  .section,
  .work-story-card,
  .craft-intro-photo,
  .service-route article,
  .feature-list article,
  .photo-rotator-slide,
  .home-photo-hero-slide,
  .page-photo-hero-slide,
  .craft-intro-photo img,
  .photo-frame img,
  .portfolio-photo img,
  .portfolio-image img,
  .portfolio-sequence-card img,
  .portfolio-support-card img,
  .portfolio-detail-card img,
  .work-story-main,
  .work-story-slide,
  .work-story-card img {
    animation: none;
    transition: none;
  }

  .button:hover,
  .facebook-link:hover,
  .service-card:hover,
  .project-card:hover,
  .footer-brand-plate:hover,
  .portfolio-photo:hover,
  .contact-card:hover,
  .mosaic-card:hover,
  .service-route article:hover,
  .feature-list article:hover {
    transform: none;
  }

  .mosaic-card:hover img {
    transform: none;
  }

  .craft-intro-photo:hover img,
  .photo-frame:hover img,
  .portfolio-photo:hover img,
  .portfolio-image:hover img,
  .portfolio-sequence-card:hover img,
  .portfolio-support-card:hover img,
  .portfolio-detail-card:hover img,
  .work-story-card:hover img {
    transform: none;
  }

  .hero-photo-shell img.is-active {
    animation: none;
  }

  .hero-photo-shell img,
  .hero-photo-shell img.is-active {
    transform: none;
    transition: opacity 150ms ease;
  }

  .work-story-slide,
  .home-photo-hero-slide,
  .page-photo-hero-slide,
  .work-story-slide.is-active {
    transform: none;
    transition: opacity 150ms ease;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding: 3.45rem 0 2.35rem;
    background:
      linear-gradient(135deg, rgba(16, 24, 17, 0.99), rgba(24, 36, 29, 0.98) 58%, #101811);
  }

  .home-photo-hero {
    min-height: 88svh;
    padding: 7.7rem 0 4.6rem;
  }

  .page-photo-hero {
    min-height: 70svh;
    padding: 7.4rem 0 4.2rem;
  }

  .home-photo-hero-inner {
    min-height: calc(88svh - 12.3rem);
  }

  .page-photo-hero-inner {
    min-height: calc(70svh - 11.6rem);
  }

  .home-photo-hero h1 {
    font-size: 3.25rem;
  }

  .page-photo-hero h1 {
    font-size: 2.85rem;
  }

  .craft-intro,
  .testimonial-intro,
  .testimonial-layout,
  .testimonial-teaser,
  .testimonial-index,
  .letter-card,
  .work-story,
  .split-layout,
  .form-layout,
  .photo-feature,
  .quote-prep-panel,
  .section-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(290px, 1fr);
    gap: 1.45rem;
  }

  .hero-page .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(290px, 1fr);
  }

  .photo-feature-reverse .photo-frame {
    order: 0;
  }

  h1 {
    font-size: 2.78rem;
  }

  .hero-photo-shell {
    aspect-ratio: 16 / 9;
  }

  .trust-grid,
  .trust-strip,
  .service-grid,
  .service-editorial-grid,
  .project-grid,
  .process-steps,
  .contact-cards,
  .footer-grid,
  .values-grid,
  .service-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-route article {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  }

  .service-route article:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .portfolio-overview,
  .portfolio-hero,
  .portfolio-feature,
  .portfolio-feature-heading,
  .portfolio-chapter,
  .portfolio-chapter-reverse .portfolio-chapter,
  .portfolio-chapter-showcase {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-section {
    background:
      linear-gradient(180deg, rgba(16, 37, 30, 0.99), rgba(13, 31, 25, 0.99));
  }

  .portfolio-feature-heading::after {
    display: none;
  }

  .portfolio-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-chapter-copy,
  .portfolio-chapter-reverse .portfolio-chapter-copy {
    position: static;
    order: 0;
  }

  .project-card-featured {
    grid-column: span 2;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .craft-notes,
  .work-story-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic-card,
  .mosaic-card-1,
  .mosaic-card-2,
  .mosaic-card-3 {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .quote-prep-panel {
    background: linear-gradient(180deg, var(--green-dark), #162c23 58%, var(--paper) 58%);
  }

  .work-story-main {
    min-height: 420px;
  }

  .work-story-copy {
    max-width: 760px;
  }

  .work-story-copy .section-heading h2,
  .work-story-copy .section-heading p:not(.eyebrow) {
    max-width: none;
  }

  .testimonial-intro h2,
  .testimonial-feature blockquote p {
    max-width: none;
  }

  .letter-masonry {
    column-count: 1;
  }

  .letter-card-meta {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 24, 20, 0.1);
    padding: 0 0 1rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-inner {
    min-height: 88px;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.56rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    height: 68px;
    max-width: 190px;
  }

  .header-facebook {
    display: none;
  }

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

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 3.1rem 0 2.1rem;
  }

  body[data-route="/"] .site-header {
    background:
      linear-gradient(180deg, rgba(8, 12, 9, 0.5), rgba(8, 12, 9, 0.08));
  }

  .home-photo-hero {
    min-height: 90svh;
    padding: 7.5rem 0 3.45rem;
  }

  .page-photo-hero {
    min-height: 72svh;
    padding: 7.1rem 0 3.3rem;
  }

  .home-photo-hero-slide {
    object-position: var(--hero-slide-focal-mobile, var(--hero-slide-focal, center center));
  }

  .page-photo-hero-slide {
    object-position: var(--page-hero-focal-mobile, var(--page-hero-focal, center center));
  }

  .home-photo-hero-overlay,
  .page-photo-hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 9, 0.72) 0%, rgba(8, 12, 9, 0.44) 54%, rgba(8, 12, 9, 0.16) 100%),
      linear-gradient(180deg, rgba(8, 12, 9, 0.34) 0%, rgba(8, 12, 9, 0.06) 34%, rgba(8, 12, 9, 0.58) 100%);
  }

  .home-photo-hero-inner {
    min-height: calc(90svh - 11rem);
  }

  .page-photo-hero-inner {
    min-height: calc(72svh - 10.4rem);
  }

  .home-photo-hero h1 {
    max-width: 10.5ch;
    font-size: 2.5rem;
  }

  .page-photo-hero h1 {
    max-width: 9.5ch;
    font-size: 2.3rem;
  }

  .home-photo-hero p,
  .page-photo-hero p {
    max-width: 29ch;
    font-size: 1.02rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(244, 242, 236, 0.035), rgba(13, 18, 14, 0.22));
    opacity: 0.56;
  }

  .hero-grid,
  .hero-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-page h1 {
    max-width: 12ch;
    font-size: 2.72rem;
  }

  h1 {
    max-width: 15ch;
    font-size: 2.16rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-lede,
  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-media {
    display: grid;
    gap: 0.85rem;
  }

  .hero-media-label {
    margin-top: 0.55rem;
    background: var(--green-dark);
  }

  .button-row,
  .empty-state-panel,
  .cta-inner,
  .cta-actions,
  .footer-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-cta-mark {
    width: 58px;
    height: 58px;
  }

  .trust-grid,
  .trust-strip,
  .service-grid,
  .service-editorial-grid,
  .testimonial-grid,
  .testimonial-teaser-grid,
  .quiet-service-list,
  .project-grid,
  .portfolio-variety-strip,
  .portfolio-proof-points,
  .portfolio-sequence-card,
  .portfolio-support-card,
  .portfolio-detail-grid,
  .portfolio-photo-grid,
  .process-steps,
  .feature-list,
  .verification-grid,
  .contact-cards,
  .form-grid,
  .footer-grid,
  .values-grid,
  .service-route,
  .photo-mosaic,
  .craft-notes,
  .work-story-cards {
    grid-template-columns: 1fr;
  }

  .category-list,
  .contact-proof-list,
  .quote-prep-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    border-inline: 0;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 246, 0.12);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .project-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-variety-strip article {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  }

  .portfolio-variety-strip article:last-child {
    border-bottom: 0;
  }

  .portfolio-hero-section {
    padding: 3.45rem 0 3.8rem;
    background:
      linear-gradient(180deg, rgba(16, 37, 30, 0.99), rgba(13, 31, 25, 0.99));
  }

  .portfolio-brand-seal {
    display: none;
  }

  .portfolio-hero-copy h1 {
    max-width: 14ch;
  }

  .portfolio-proof-points div {
    padding: 0.78rem 0.55rem 0.78rem 0;
    border-right: 1px solid rgba(255, 253, 246, 0.12);
    border-bottom: 0;
  }

  .portfolio-proof-points div:last-child {
    border-right: 0;
  }

  .portfolio-proof-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-proof-points dd {
    font-size: 0.86rem;
  }

  .portfolio-hero-image img,
  .portfolio-feature-main img,
  .portfolio-chapter-lead img {
    aspect-ratio: 4 / 3;
  }

  .portfolio-sequence-card img,
  .portfolio-support-card img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .portfolio-photo,
  .portfolio-photo-lead {
    grid-column: auto;
  }

  .portfolio-photo-lead img,
  .portfolio-photo img {
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 3.8rem 0;
  }

  .prose {
    padding: 1.25rem;
  }

  .mosaic-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .mosaic-card {
    min-height: 290px;
  }

  .mosaic-card-1 {
    min-height: 360px;
  }

  .quote-prep-panel {
    padding: 0.8rem;
  }

  .quote-prep-copy {
    padding: 1.35rem 1rem 1rem;
  }

  .quote-prep-photo,
  .quote-prep-photo img {
    min-height: 250px;
  }

  .craft-notes article,
  .craft-notes article + article {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  }

  .craft-notes article:last-child {
    border-bottom: 0;
  }

  .service-editorial-card {
    min-height: auto;
  }

  .work-story-main {
    min-height: 310px;
  }

  .work-story-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .work-story-card img {
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .work-story-copy .button-secondary {
    width: fit-content;
  }

  .work-story-copy .section-heading h2 {
    max-width: 10.5ch;
    font-size: 2.45rem;
  }

  .work-story-copy .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .work-story-brandmark {
    min-height: 0;
    width: min(100%, 220px);
  }

  .work-story-brandmark img {
    width: 118px;
    height: 118px;
  }

  .testimonial-intro {
    gap: 0.85rem;
  }

  .testimonial-intro h2 {
    max-width: 10.5ch;
    font-size: 2.45rem;
  }

  .testimonial-feature,
  .testimonial-card {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  .testimonial-feature blockquote p {
    font-size: 1.92rem;
    line-height: 1.08;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card blockquote p {
    font-size: 1.2rem;
  }

  .testimonial-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .testimonial-teaser-card {
    min-height: auto;
  }

  .testimonial-teaser-card blockquote p {
    font-size: 1.32rem;
  }

  .testimonial-index {
    gap: 1.2rem;
  }

  .testimonial-jump-list {
    gap: 0.45rem;
  }

  .letter-card {
    gap: 1rem;
    padding: 1.15rem;
  }

  .letter-card-meta h2 {
    font-size: 1.46rem;
  }

  .letter-card-body blockquote p {
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  .hero {
    padding: 2.7rem 0 1.45rem;
  }

  .home-photo-hero {
    min-height: 88svh;
    padding: 7.1rem 0 2.75rem;
  }

  .page-photo-hero {
    min-height: 68svh;
    padding: 6.9rem 0 2.7rem;
  }

  .home-photo-hero h1 {
    max-width: 9.5ch;
    font-size: 2.08rem;
  }

  .page-photo-hero h1 {
    font-size: 2rem;
  }

  .home-photo-hero .eyebrow,
  .page-photo-hero .eyebrow {
    max-width: 28ch;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .brand-logo {
    height: 70px;
    max-width: 198px;
  }

  .hero-color-rail {
    top: 0.8rem;
  }

  .pill-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-copy .eyebrow {
    max-width: 28ch;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-lede,
  .hero-copy > p {
    max-width: 32ch;
  }

  .hero-photo-shell {
    aspect-ratio: 16 / 9;
  }

  .hero-media-label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    max-width: calc(100% - 2rem);
    margin: 0;
  }

}

@media (max-width: 360px) {
  .header-inner {
    gap: 0.55rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand-logo {
    height: 62px;
    max-width: 166px;
  }

  .facebook-link,
  .menu-button {
    width: 42px;
    height: 42px;
  }
}
