:root {
  --outer-page: #e7e7e7;
  --page: #353535;
  --panel: #000;
  --panel-soft: #181818;
  --gold: #ecbd00;
  --gold-strong: #ffcc00;
  --button: #694f22;
  --text: #e8e8e8;
  --white: #fff;
  --shadow: 0 12px 24px rgba(0, 0, 0, 0.45), -18px 0 28px rgba(0, 0, 0, 0.18), 18px 0 28px rgba(0, 0, 0, 0.18);
  --shell-width: 1200px;
  --max: 1440px;
  --footer-max: 1230px;
  --title-max: 1200px;
  --content-grid-max: 1200px;
  --content-full-width: 100%;
  --content-inset-width: min(calc(var(--content-grid-max) - 60px), calc(100% - 60px));
  --content-inset-width-mobile: 100%;
  --content-column-space: 15px;
  --content-card-padding-y: 25px;
  --content-card-padding-x: 15px;
  --content-column-gap: 30px;
  --content-two-column-width: 525px;
  --content-two-column-gap: 60px;
  --content-media-width: var(--content-two-column-width);
  --content-media-height: 393.75px;
  --content-row-space: 70px;
  --content-row-space-mobile: 55px;
  --content-section-title-height: 80px;
  --content-section-title-height-mobile: 68px;
  --content-section-title-follow-space: 35px;
  --content-section-title-follow-space-mobile: 15px;
  --content-panel-pad-y: 10px;
  --content-card-shadow: 0 6px 12px rgba(105, 79, 34, 0.4);
  --content-text-color: var(--text);
  --content-strong-color: var(--white);
  --content-strong-font-weight: 700;
  --content-title-color: var(--text);
  --content-title-shadow: 0 0.05em 0 #694f22;
  --content-title-size: 36px;
  --content-display-size: 45px;
  --content-text-size: 18px;
  --content-text-line-height: 1.4;
  --content-text-letter-spacing: 0.016em;
  --content-title-letter-spacing: -0.015em;
  --section-title-letter-spacing: 0.015em;
  --content-button-bg: var(--button);
  --content-button-bg-hover: var(--page);
  --content-button-color: var(--text);
  --content-button-color-hover: var(--gold-strong);
  --content-button-font-size: 17px;
  --content-button-font-weight: 800;
  --content-button-line-height: 1.2;
  --content-button-icon-width: 45px;
  --content-button-margin-top: 25px;
  --content-flow-space: 20px;
  --content-heading-space: 31px;
  --content-underline: 0 1px 0 #f5da55, 0 2px 0 #e6b736, 0 3px 0 #3b3b3b;
  --gold-line: linear-gradient(to bottom, #f5da55, #e6b736, #3b3b3b);
  --black-gradient: linear-gradient(to right, #4b4b4b, #000, #4b4b4b);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--outer-page);
  color: var(--text);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.42;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

strong {
  color: var(--white);
  font-weight: 700;
}

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

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--page);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  background: var(--page);
  overflow: visible;
  transition: box-shadow 180ms ease;
}

.site-header-spacer {
  height: 321px;
}

.site-header.is-stuck {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

.header-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  margin: 0 auto;
  min-height: 272px;
  padding: 30px 52px 22px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.logo-link {
  display: block;
  width: 230px;
  transition: width 180ms ease;
}

.site-header.is-stuck .header-top {
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header.is-stuck .logo-link {
  width: 120px;
}

.site-header.is-stuck .header-top .social {
  top: 17px;
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social.right {
  justify-content: flex-end;
}

.social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: rgba(232, 232, 232, 0.8);
  color: #353535;
}

.social a:hover,
.social a:focus {
  border-color: var(--button);
  background: var(--gold);
  color: #353535;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-top .social {
  position: absolute;
  top: 35px;
  margin-top: 0;
}

.header-top > .social:first-child {
  left: 157px;
  margin-left: 0;
}

.header-top > .social.right {
  right: 157px;
  margin-right: 0;
}

.main-menu {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 35px;
  border: 0;
  background: var(--black-gradient);
  min-height: 0;
  padding: 12px 20px 13px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.main-menu::before,
.main-menu::after,
.mobile-bar::before,
.mobile-bar::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-line);
}

.main-menu::before,
.mobile-bar::before {
  top: 0;
}

.main-menu::after,
.mobile-bar::after {
  bottom: 0;
}

.main-menu a {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0.02em 0.05em 0 #bc8a00;
  text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a:focus {
  color: var(--gold-strong);
}

.main-menu a.active {
  color: var(--gold-strong);
  text-shadow: 0.02em 0.05em 0 #694f22;
}

.mobile-bar {
  display: none;
}

.mobile-only {
  display: none;
}

.menu-toggle {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle-icon {
  position: absolute;
  inset: 0;
  display: block;
  width: 25px;
  height: 25px;
  color: currentColor;
  transition: opacity 300ms cubic-bezier(0.42, 0.01, 0.58, 1), transform 300ms cubic-bezier(0.42, 0.01, 0.58, 1);
}

.menu-toggle-open span,
.menu-toggle-close::before,
.menu-toggle-close::after {
  position: absolute;
  left: 2px;
  display: block;
  width: 21px;
  height: 3px;
  border-radius: 1px;
  background: currentColor;
  content: "";
}

.menu-toggle-open span:nth-child(1) {
  top: 4px;
}

.menu-toggle-open span:nth-child(2) {
  top: 11px;
}

.menu-toggle-open span:nth-child(3) {
  top: 18px;
}

.menu-toggle-close {
  opacity: 0;
}

.menu-toggle-close::before,
.menu-toggle-close::after {
  top: 11px;
}

.menu-toggle-close::before {
  transform: rotate(45deg);
}

.menu-toggle-close::after {
  transform: rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-open {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-close {
  opacity: 1;
}

.section-title,
.feature-banner {
  width: var(--content-full-width);
}

.content-card,
.page-title,
.home-projects {
  width: var(--content-inset-width);
}

main {
  padding: 70px 0 0;
}

.content-card,
.page-title {
  margin: var(--content-row-space) auto 0;
  padding: var(--content-card-padding-y) var(--content-card-padding-x);
  background: var(--panel);
  box-shadow: var(--content-card-shadow);
}

main > .content-card:first-child,
main > .page-title:first-child,
main > .section-title:first-child,
main > .feature-banner:first-child,
main > .home-projects:first-child {
  margin-top: 0;
}

.home-hero,
.project-summary,
.two-column,
.contact-info,
.contact-card,
.home-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--content-two-column-gap);
  align-items: start;
}

.home-projects {
  gap: var(--content-column-gap);
  align-items: stretch;
}

.section-title {
  position: relative;
  height: var(--content-section-title-height);
  margin-top: var(--content-row-space);
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: var(--black-gradient);
  box-shadow: none;
  text-align: center;
}

.section-title + .content-card,
.section-title + .page-title,
.section-title + .home-projects,
.section-title + .feature-banner,
.section-title + .section-title {
  margin-top: var(--content-section-title-follow-space);
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-line);
}

.section-title::before {
  top: 0;
}

.section-title::after {
  bottom: 0;
}

.section-title h2 {
  margin: 0;
  padding: 15px 20px 20px;
  color: var(--content-title-color);
  font-size: var(--content-display-size);
  font-weight: 600;
  line-height: 45px;
  letter-spacing: var(--section-title-letter-spacing);
  text-shadow: var(--content-title-shadow);
  text-transform: uppercase;
}

.content-card > h1:only-child,
.content-card > h2:only-child,
.page-title h1 {
  margin: 0;
  padding: 0;
  color: var(--content-title-color);
  font-size: var(--content-display-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--section-title-letter-spacing);
  text-shadow: var(--content-title-shadow);
  text-transform: uppercase;
}

.section-title h2::after {
  display: none;
}

main h1,
main h2,
main h3 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--content-title-color);
  font-size: var(--content-title-size);
  font-weight: 600;
  letter-spacing: var(--content-title-letter-spacing);
  line-height: 1.2;
  text-shadow: var(--content-title-shadow);
  text-transform: none;
}

.header-underline {
  position: relative;
  padding-bottom: 10px;
}

.header-underline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold-line);
  box-shadow: none;
}

.header-underline + * {
  margin-top: var(--content-heading-space);
}

main p + h2,
main p + h3,
main .button-stack + h2,
main .button-stack + h3 {
  margin-top: var(--content-heading-space);
}

main p {
  margin: var(--content-flow-space) 0 0;
  color: var(--content-text-color);
  font-size: var(--content-text-size);
  letter-spacing: var(--content-text-letter-spacing);
  line-height: var(--content-text-line-height);
}

.content-card > :first-child,
.page-title > :first-child,
.home-card-column > :first-child,
.home-project-copy > :first-child,
.contact-card > :first-child,
.contact-info > :first-child {
  margin-top: 0;
}

main strong {
  color: var(--content-strong-color);
  font-weight: var(--content-strong-font-weight);
}

main .subline {
  color: var(--content-text-color);
  font-size: var(--content-text-size);
  font-weight: 700;
  letter-spacing: var(--content-text-letter-spacing);
  line-height: var(--content-text-line-height);
}

.hero-image {
  width: 100%;
  margin: 30px 0 0;
}

.wide-image {
  width: min(100%, var(--title-max));
  margin: 0 auto;
  border-top: 2px solid var(--gold);
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  filter: brightness(0.72);
}

.button,
.contact-form button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin: var(--content-button-margin-top) 0 0;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--content-button-bg);
  color: var(--content-button-color);
  box-sizing: border-box;
  font-size: var(--content-button-font-size);
  font-weight: var(--content-button-font-weight);
  letter-spacing: 0;
  line-height: var(--content-button-line-height);
  text-align: center;
  text-transform: uppercase;
  transition: background-color 200ms ease, color 200ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus,
.contact-form button:hover,
.contact-form button:focus {
  background: var(--content-button-bg-hover);
  color: var(--content-button-color-hover);
}

.split-button {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-right: calc(23px + var(--content-button-icon-width));
}

.split-button::after {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: var(--content-button-icon-width);
  height: 100%;
  place-items: center;
  border-left: 1px solid rgba(232, 232, 232, 0.42);
  background: transparent;
  color: var(--content-button-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 200ms ease, color 200ms ease;
}

.split-button:hover::after,
.split-button:focus::after {
  background: transparent;
  color: var(--content-button-color-hover);
}

.button-stack {
  display: grid;
  max-width: 560px;
  margin: var(--content-button-margin-top) auto 0;
}

.gold-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gold-list li {
  padding: 18px 18px 16px;
  border-top: 2px solid var(--gold);
  background: var(--panel-soft);
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  text-align: center;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 280ms ease;
}

.slide {
  flex: 0 0 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: rgba(236, 189, 0, 0.9);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
  cursor: pointer;
  font-size: 0;
}

.slider-arrow::before {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.slider-arrow.prev::before {
  content: "«";
}

.slider-arrow.next::before {
  content: "»";
}

.slider-arrow:hover,
.slider-arrow:focus {
  background: var(--button);
  color: var(--gold-strong);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.project-summary.reverse > div:first-child,
.two-column.reverse > div:first-child {
  order: 2;
}

.feature-image {
  width: 100%;
  box-shadow: 0 10px 18px rgba(236, 189, 0, 0.16), 0 16px 20px rgba(0, 0, 0, 0.4);
}

.text-page {
  max-width: 1040px;
}

.completed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.completed-grid article {
  min-height: 170px;
  padding: 22px;
  border-top: 2px solid var(--gold);
  background: var(--panel-soft);
}

.completed-grid h3 {
  margin-top: 0;
  font-size: 24px;
  text-transform: none;
}

.project-detail {
  max-width: var(--max);
}

.project-detail h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.project-detail .slider {
  max-width: 900px;
  margin: 28px auto 0;
}

.project-detail .button-stack {
  max-width: 900px;
}

.contact-info iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
}

.contact-card {
  min-height: 644px;
}

.contact-logo {
  padding: 0;
  border: 1px solid rgba(236, 189, 0, 0.5);
  box-shadow: none;
}

.contact-logo img {
  width: 100%;
  max-width: 523px;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 0 var(--content-column-space);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--page);
  color: var(--gold);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: var(--content-button-font-size);
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gold);
  opacity: 1;
}

.upload-field {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 95px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed var(--gold);
  border-radius: 0;
  background: var(--page);
  color: var(--gold);
  font-size: var(--content-button-font-size);
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.upload-field input {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.upload-copy {
  padding: 20px;
  pointer-events: none;
}

.upload-list {
  display: none;
  width: 100%;
  padding: 0 16px 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
  pointer-events: none;
}

.upload-field.has-files .upload-copy {
  padding-bottom: 0;
}

.upload-field.has-files .upload-list {
  display: block;
}

.upload-field.is-dragover {
  border-color: var(--gold-strong);
  background: #242424;
  color: var(--gold-strong);
}

.button.full {
  width: 100%;
}

.form-notice {
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(236, 189, 0, 0.65);
  background: rgba(236, 189, 0, 0.12);
  color: var(--white);
}

.site-footer {
  position: relative;
  margin-top: 70px;
  border-top: 0;
  background: var(--black-gradient);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-line);
}

.site-footer::before {
  top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--footer-max));
  margin: 0 auto;
  padding: 40px 15px;
  align-items: start;
}

.footer-contact,
.footer-logo,
.footer-links {
  min-width: 0;
  padding: 0 15px;
}

.footer-main h2 {
  margin: 0 0 24px;
  color: var(--gold-strong);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 0.03em 0 #694f22;
}

.footer-contact p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact-mobile {
  display: none;
}

.footer-contact a,
.footer-bottom a {
  text-decoration: underline;
}

.footer-logo {
  width: auto;
  justify-self: stretch;
}

.footer-logo img {
  width: 200px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 30px;
}

.footer-links nav {
  display: grid;
  justify-items: end;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: right;
}

.footer-links a.active {
  color: var(--gold-strong);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px 27px;
  background: #353535;
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-line);
}

.footer-social a {
  border-color: var(--gold);
  background: var(--gold);
  color: #353535;
}

.footer-social a:hover,
.footer-social a:focus {
  border-color: var(--gold);
  background: var(--button);
  color: var(--white);
}

@media (min-width: 1201px) {
  .site-shell {
    max-width: var(--shell-width);
    box-shadow: -15px 0 20px -10px rgba(0, 0, 0, 0.9), 15px 0 20px -10px rgba(0, 0, 0, 0.9);
  }

  .site-header {
    left: 50%;
    right: auto;
    max-width: var(--shell-width);
    transform: translateX(-50%);
  }

  .header-top,
  .footer-main {
    width: 100%;
  }

}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 72px 86px;
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 220ms ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-stage {
  position: relative;
  display: grid;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 144px);
  place-items: center;
  transform: scale(1);
  transition: transform 220ms ease, opacity 220ms ease;
}

.lightbox-stage.is-changing {
  opacity: 0.55;
  transform: scale(0.985);
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 144px);
  object-fit: contain;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(236, 189, 0, 0.24);
}

.lightbox-counter {
  position: absolute;
  right: 0;
  bottom: -36px;
  min-width: 64px;
  padding: 6px 10px;
  background: rgba(105, 79, 34, 0.92);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: rgba(105, 79, 34, 0.92);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.lightbox button:hover,
.lightbox button:focus {
  background: var(--page);
  color: var(--gold-strong);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  font-size: 36px;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 70px;
  font-size: 0;
  transform: translateY(-50%);
}

.lightbox-nav::before {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.lightbox-prev::before {
  content: "«";
}

.lightbox-next::before {
  content: "»";
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 1024px) {
  body {
    font-size: 17px;
  }

  .desktop-only {
    display: none;
  }

  .header-top > .social:first-child,
  .header-top > .social.right {
    margin-right: 0;
    margin-left: 0;
  }

  .header-top {
    display: flex;
    justify-content: center;
    min-height: 200px;
    padding: 30px 20px;
  }

  .logo-link {
    width: 150px;
  }

  .site-header.is-stuck .header-top {
    min-height: 110px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header.is-stuck .logo-link {
    width: 90px;
  }

  .site-header.is-stuck .header-top .social {
    margin-top: 0;
  }

  .mobile-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 6px 15px 7px;
    border: 0;
    background: var(--black-gradient);
  }

  .mobile-bar .social a {
    width: 24px;
    height: 24px;
    border-color: var(--gold);
    background: #e8e8e8;
  }

  .mobile-bar .social svg {
    width: 16px;
    height: 16px;
  }

  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-height: 600px;
    overflow: hidden auto;
    padding: 0;
    border-top: 0;
    background: #353535;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 300ms cubic-bezier(0.42, 0.01, 0.58, 1), visibility 300ms cubic-bezier(0.42, 0.01, 0.58, 1);
  }

  .main-menu::before,
  .main-menu::after {
    display: none;
  }

  .main-menu.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .main-menu a {
    display: flex;
    min-height: 65px;
    align-items: center;
    padding: 0 20px 0 25.5px;
    border-bottom: 1px solid #e8e8e8;
    background: #353535;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    line-height: 17px;
    text-align: left;
  }

  .main-menu a.active {
    border-bottom-color: var(--gold-strong);
    background: #181818;
  }

  main {
    padding: 50px 0 0;
  }

  .button,
  .contact-form button {
    width: 100%;
    min-width: 0;
  }

  .gold-list,
  .completed-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 40px 15px;
  }

  .footer-links {
    justify-items: end;
  }

  .footer-links nav {
    justify-items: end;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  main {
    padding: 30px 0 0;
  }

  .header-top {
    min-height: 142px;
    padding: 15px 20px;
  }

  .logo-link {
    width: 120px;
  }

  .site-header.is-stuck .header-top {
    min-height: 92px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header.is-stuck .logo-link {
    width: 70px;
  }

  .mobile-only {
    display: inline-flex;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 40px 0;
  }

  .footer-contact,
  .footer-logo {
    padding: 0 15px;
  }

  .footer-contact h2 {
    font-size: 20px;
  }

  .footer-contact p {
    font-size: 18px;
    line-height: 1.4;
  }

  .footer-contact-desktop {
    display: none;
  }

  .footer-contact-mobile {
    display: block;
  }

  .footer-logo {
    align-self: start;
    padding-top: 15px;
  }

  .footer-logo img {
    width: min(100%, 200px);
  }

  .footer-links {
    display: none;
  }

  .project-summary.reverse > div:first-child,
  .two-column.reverse > div:first-child {
    order: 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 19px;
  }

  .social a {
    width: 24px;
    height: 24px;
  }

  main h1 {
    font-size: 27px;
  }

  main h2 {
    font-size: 28px;
  }

  .hero-image {
    width: calc(100% + 20px);
    max-width: none;
    margin-left: -10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0;
  }

  .slider-arrow::before {
    font-size: 24px;
  }

  .lightbox {
    padding: 64px 50px;
  }

  .lightbox-stage,
  .lightbox img {
    max-height: calc(100vh - 128px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .lightbox-nav {
    width: 40px;
    height: 56px;
    font-size: 0;
  }

  .lightbox-nav::before {
    font-size: 24px;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

.home-page .home-hero {
  min-height: 805px;
}

.home-hero-slider {
  width: 100%;
  max-width: var(--content-media-width);
  height: var(--content-media-height);
  margin: 39px 0 0;
}

.home-hero-slider + p {
  margin-top: 52px;
}

.home-hero-slider .slide img {
  width: 100%;
  height: var(--content-media-height);
  aspect-ratio: auto;
  object-fit: cover;
}

.home-hero-slider .slide {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.home-page .home-hero .home-card-column:first-child p {
  padding: 0 10px;
}

.home-page .home-hero p {
  text-shadow: 0 0.01em 0 #694f22;
}

.feature-banner {
  position: relative;
  height: 606px;
  margin-top: var(--content-row-space);
  margin-bottom: 0;
  overflow: hidden;
  background: var(--page);
}

.feature-banner .slider-track {
  position: relative;
  height: 600px;
  margin-top: 3px;
  transition: none;
}

.feature-banner .feature-slide {
  position: absolute;
  inset: 0;
  display: flex;
  min-width: 100%;
  height: 600px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--feature-image) center / cover no-repeat;
  cursor: default;
  opacity: 0;
  z-index: 0;
  transition: opacity 1200ms ease;
}

.feature-banner .feature-slide-content {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transform: translateY(90px);
  transition: transform 1200ms ease, opacity 1200ms ease;
  z-index: 2;
}

.feature-banner:not(.slider-ready) .feature-slide-content {
  transition: none;
}

.feature-banner .feature-slide:first-child {
  opacity: 1;
}

.feature-banner.slider-ready .feature-slide {
  opacity: 0;
}

.feature-banner .feature-slide.active {
  opacity: 1;
  z-index: 1;
}

.feature-banner .feature-slide.active .feature-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.feature-banner .feature-slide.leaving .feature-slide-content {
  opacity: 0;
  transform: translateY(-90px);
}

.feature-banner::before,
.feature-banner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-line);
}

.feature-banner::before {
  top: 0;
}

.feature-banner::after {
  bottom: 0;
}

.feature-banner .feature-title-wrapper {
  width: 85%;
  padding: 15px;
  background: linear-gradient(to right, rgba(75, 75, 75, 0.8), rgba(0, 0, 0, 0.8), rgba(75, 75, 75, 0.8));
}

.feature-banner h2 {
  margin: 0;
  color: var(--content-title-color);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0.015em;
  text-align: center;
  text-shadow: 0 0.05em 0 #694f22;
  text-transform: uppercase;
}

.home-projects {
  min-height: 1070px;
  margin: var(--content-row-space) auto 0;
  padding: 0;
  background: var(--page);
}

.home-project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.home-project-card h2 {
  min-height: 96px;
  margin: 0;
  padding: var(--content-panel-pad-y) var(--content-column-space);
  background: var(--panel);
  box-shadow: var(--content-card-shadow);
  line-height: 1.2;
}

.home-project-card .slider {
  width: 100%;
  margin-top: 10px;
  box-shadow: var(--content-card-shadow);
}

.home-project-card .slide img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-project-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: var(--content-panel-pad-y) var(--content-column-space) var(--content-column-space);
  background: var(--panel);
  box-shadow: var(--content-card-shadow);
}

.home-project-copy .button {
  margin-top: auto;
  font-size: var(--content-button-font-size);
  font-weight: var(--content-button-font-weight);
  line-height: var(--content-button-line-height);
}

.home-about {
  min-height: 610px;
}

.home-page .two-column.home-about,
.home-page .two-column.home-architecture {
  align-items: stretch;
}

.home-about .home-card-column,
.home-architecture .home-card-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-about .home-card-column:last-child h2,
.home-architecture .home-card-column:first-child h2 {
  margin: 0;
}

.home-about .slider {
  width: 100%;
  max-width: var(--content-media-width);
  margin-top: 25px;
}

.home-architecture .slider {
  width: 100%;
  max-width: var(--content-media-width);
  margin-top: 0;
}

.home-about .slide img,
.home-architecture .slide img {
  width: 100%;
  height: var(--content-media-height);
  aspect-ratio: auto;
  object-fit: cover;
}

.home-architecture {
  min-height: 516px;
}

@media (max-width: 1199px) {
  .home-hero,
  .two-column,
  .contact-info,
  .contact-card {
    gap: 30px;
  }

  .home-hero-slider,
  .home-hero-slider .slide img,
  .home-about .slider,
  .home-architecture .slider,
  .home-about .slide img,
  .home-architecture .slide img,
  .home-project-card .slider,
  .home-project-card .slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-projects {
    min-height: 0;
  }

}

@media (max-width: 640px) {
  .content-card,
  .page-title,
  .home-projects {
    width: var(--content-inset-width-mobile);
  }

  .content-card,
  .page-title {
    margin-top: var(--content-row-space-mobile);
    box-shadow: none;
  }

  .home-hero,
  .two-column,
  .contact-info,
  .contact-card,
  .home-projects {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  main h1,
  main h2,
  main h3 {
    font-size: 30px;
  }

  .home-hero-slider,
  .home-about .slider,
  .home-architecture .slider {
    margin-top: 34px;
  }

  .home-page .home-hero {
    min-height: 0;
  }

  .feature-banner {
    height: 420px;
  }

  .feature-banner .slider-track,
  .feature-banner .feature-slide {
    height: 414px;
  }

  .feature-banner .feature-title-wrapper {
    width: 100%;
    padding: 5px;
  }

  .feature-banner h2 {
    font-size: 25px;
    line-height: 1.2;
    text-shadow: 0 0.03em 0 #694f22;
  }

  .section-title {
    height: auto;
    min-height: var(--content-section-title-height-mobile);
    margin-top: var(--content-row-space-mobile);
    margin-bottom: 0;
  }

  .section-title + .content-card,
  .section-title + .page-title,
  .section-title + .home-projects,
  .section-title + .feature-banner,
  .section-title + .section-title {
    margin-top: var(--content-section-title-follow-space-mobile);
  }

  .section-title h2 {
    padding: 14px 15px;
    font-size: 36px;
    line-height: 1.12;
  }

  .content-card > h1:only-child,
  .content-card > h2:only-child,
  .page-title h1 {
    font-size: 36px;
    line-height: 1;
  }

  .home-projects {
    margin-top: var(--content-row-space-mobile);
  }

  .home-project-card h2 {
    min-height: 0;
    margin: 0;
  }

  .home-project-copy {
    margin-top: 10px;
    padding: var(--content-panel-pad-y) var(--content-column-space);
  }

  .home-project-copy .button {
    margin-top: var(--content-button-margin-top);
  }

  .home-about,
  .home-architecture,
  .contact-card {
    min-height: 0;
  }

  .home-page .two-column.reverse > div:first-child {
    order: 0;
  }

}

@media (max-width: 480px) {
  main h1,
  main h2,
  main h3 {
    font-size: 27px;
  }

  .section-title h2,
  .content-card > h1:only-child,
  .content-card > h2:only-child,
  .page-title h1 {
    font-size: 30px;
  }
}
