: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;
  --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 {
  font: inherit;
}

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

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

main {
  padding: 70px 30px 0;
}

.content-card,
.page-title {
  width: min(100%, var(--max));
  margin: 0 auto 70px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 58px 128px;
}

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

.home-hero {
  padding-top: 42px;
}

.page-title {
  width: min(100%, var(--title-max));
  padding: 24px 34px 22px;
}

.page-title h1,
.section-title h2,
h1,
h2,
h3 {
  margin: 0 0 26px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 3px 3px 0 rgba(236, 189, 0, 0.18);
}

.page-title h1 {
  border-bottom: 0;
  margin: 0;
  font-size: 43px;
  text-transform: uppercase;
}

h1 {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-size: 38px;
}

h2 {
  font-size: 36px;
}

h3 {
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  font-size: 28px;
  text-transform: uppercase;
}

p {
  margin: 0 0 28px;
}

.subline {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
}

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

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

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

.section-title {
  width: calc(100% + 60px);
  margin: 0 -30px 36px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: linear-gradient(90deg, #353535, #191919, #353535);
  text-align: center;
}

.section-title h2 {
  margin: 0;
  padding: 14px 20px 11px;
  font-size: 42px;
  text-transform: uppercase;
}

.button,
.contact-form button {
  display: inline-flex;
  min-width: 300px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  margin: 8px 0 26px;
  padding: 8px 16px;
  border: 0;
  background: var(--button);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover,
.button:focus,
.contact-form button:hover,
.contact-form button:focus {
  background: var(--gold);
  color: #242424;
}

.split-button {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-right: 56px;
}

.split-button::after {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 43px;
  height: 100%;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 29px;
}

.button-stack {
  display: grid;
  max-width: 560px;
  margin: 30px auto;
}

.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: zoom-in;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  background: rgba(236, 189, 0, 0.78);
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  line-height: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.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-card h2,
.contact-info h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

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

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

.contact-card {
  align-items: center;
}

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

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

.contact-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(236, 189, 0, 0.5);
  border-radius: 4px;
  background: #353535;
  color: var(--gold);
  padding: 12px 16px;
}

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

.upload-field {
  position: relative;
  display: grid;
  min-height: 110px;
  place-items: center;
  border: 1px dashed rgba(236, 189, 0, 0.75);
  border-radius: 4px;
  background: #353535;
  color: var(--gold);
  text-align: center;
  cursor: pointer;
}

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

.upload-copy {
  padding: 20px;
}

.button.full {
  width: 100%;
  margin: 0;
}

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

.legal-page {
  max-width: 900px;
}

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

  main {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1200px);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  cursor: pointer;
}

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

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

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@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 30px 0;
  }

  .content-card,
  .page-title {
    margin-bottom: 55px;
    box-shadow: none;
  }

  .content-card {
    padding: 42px 15px;
  }

  .page-title {
    padding: 24px 10px;
  }

  .page-title h1,
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  .section-title {
    width: 100%;
    margin: 0 0 34px;
  }

  .section-title h2 {
    font-size: 30px;
  }

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

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

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

  .content-card {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: 27px;
  }

  h2 {
    font-size: 28px;
  }

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

  .slider-arrow {
    width: 34px;
    height: 38px;
    font-size: 34px;
  }

  .lightbox-nav {
    width: 38px;
    height: 62px;
  }
}

.home-page {
  padding: 70px 0 0;
}

.home-page > .content-card {
  width: min(1140px, calc(100% - 60px));
  margin-bottom: 70px;
  padding: 15px;
  background: var(--panel);
  box-shadow: 0 6px 12px rgba(105, 79, 34, 0.4);
}

.home-page .home-hero,
.home-page .two-column {
  display: grid;
  grid-template-columns: 525px 525px;
  gap: 60px;
  align-items: start;
}

.home-page .home-card-column {
  padding-top: 20px;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-shadow: 0 0.03em 0 #694f22;
  text-transform: none;
}

.home-page .content-card h1,
.home-page .content-card h2 {
  position: relative;
}

.home-page .content-card h1::after,
.home-page .content-card h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold);
}

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

.home-page .subline {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.home-page .button,
.home-page .contact-form button {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  margin: 0;
  padding: 0 23px;
  align-items: center;
  justify-content: flex-start;
  background: var(--button);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
  transition: background-color 200ms ease, color 200ms ease;
}

.home-page .split-button {
  padding-right: 56px;
}

.home-page .split-button::after {
  width: 43px;
  border-left-color: rgba(232, 232, 232, 0.42);
  background: rgba(0, 0, 0, 0.08);
  color: var(--text);
  transition: background-color 200ms ease, color 200ms ease;
}

.home-page .button:hover,
.home-page .button:focus {
  background: #543f1b;
  color: var(--text);
}

.home-page .split-button:hover::after,
.home-page .split-button:focus::after {
  background: rgba(0, 0, 0, 0.22);
  color: var(--gold-strong);
}

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

.home-hero-slider {
  width: 525px;
  height: 393.75px;
  margin: 39px 0 52px;
}

.home-hero-slider .slide img {
  width: 525px;
  height: 393.75px;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-hero-slider .slider-arrow {
  width: 40px;
  height: 40px;
  background: rgba(236, 189, 0, 0.72);
  color: var(--text);
  font-size: 40px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background-color 180ms ease;
}

.home-hero-slider:hover .slider-arrow,
.home-hero-slider:focus-within .slider-arrow {
  opacity: 1;
}

.home-hero-slider .slider-arrow:hover,
.home-hero-slider .slider-arrow:focus {
  background: rgba(105, 79, 34, 0.9);
}

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

.home-page .home-hero .home-card-column:nth-child(2) h1 {
  margin-bottom: 31px;
}

.home-page .home-hero .home-card-column:nth-child(2) p {
  margin-bottom: 0;
}

.home-page .home-hero .home-card-column:nth-child(2) .hero-action {
  margin: 25px 0 60px;
}

.home-page .home-hero .home-card-column:nth-child(2) .hero-contact-action {
  margin-bottom: 55px;
}

.home-page .home-hero .home-card-column:nth-child(2) .hero-final-action {
  margin: 0;
}

.feature-banner {
  position: relative;
  width: min(1200px, 100%);
  height: 606px;
  margin: 0 auto 70px;
  overflow: hidden;
  background: url("../uploads/2025/06/kaan-1.jpg") center / cover no-repeat;
}

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

.feature-banner::before,
.home-page > .section-title::before {
  top: 0;
}

.feature-banner::after,
.home-page > .section-title::after {
  bottom: 0;
}

.feature-banner h2 {
  position: absolute;
  top: 236px;
  left: 131px;
  display: flex;
  width: 938px;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 28px;
  background: rgba(53, 53, 53, 0.78);
  color: var(--text);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.33;
  text-align: center;
  text-shadow: 0 0.05em 0 #694f22;
  text-transform: uppercase;
}

.home-page > .section-title {
  position: relative;
  width: min(1200px, 100%);
  height: 80px;
  margin: 0 auto 35px;
  border: 0;
  background: var(--black-gradient);
  text-align: center;
}

.home-page > .section-title h2 {
  margin: 0;
  padding: 15px 20px 20px;
  color: var(--text);
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
  text-shadow: 0 0.05em 0 #694f22;
  text-transform: uppercase;
}

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

.home-projects {
  display: grid;
  grid-template-columns: 555px 555px;
  gap: 30px;
  width: min(1200px, 100%);
  min-height: 1160px;
  margin: 0 auto 70px;
  padding: 10px 30px 29px;
  background: var(--page);
}

.home-project-card {
  min-width: 0;
}

.home-project-card h2 {
  min-height: 86px;
  margin: 0;
  padding: 10px 15px 0;
  background: var(--panel);
}

.home-project-card .slider {
  width: 555px;
}

.home-project-card .slide img {
  width: 555px;
  height: 416.25px;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-project-copy {
  padding: 23px 15px 0;
}

.home-project-copy .subline {
  margin-bottom: 20px;
}

.home-project-card .button {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
}

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

.home-about .slider,
.home-architecture .slider {
  width: 525px;
  margin-top: 39px;
}

.home-about .slide img,
.home-architecture .slide img {
  width: 525px;
  height: 393.75px;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-about .home-card-column:first-child .button {
  margin-top: 55px;
}

.home-about .home-card-column:last-child .button {
  margin-top: 8px;
}

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

.home-architecture .home-card-column:first-child p:first-of-type {
  margin-top: 39px;
}

.home-architecture .home-card-column:first-child .button {
  margin-top: 58px;
}

.home-page .contact-card {
  grid-template-columns: 525px 540px;
  gap: 45px;
  min-height: 764px;
  align-items: start;
}

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

.home-page .contact-logo img {
  width: 523px;
  max-width: none;
}

.home-page .contact-form {
  gap: 13px;
  padding-top: 20px;
}

.home-page .contact-form input {
  min-height: 42px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--page);
  color: var(--gold);
  font-size: 17px;
}

.home-page .upload-field {
  min-height: 95px;
  border-color: var(--gold);
  border-radius: 0;
  background: var(--page);
}

@media (max-width: 1199px) {
  .home-page {
    padding-top: 50px;
  }

  .home-page > .content-card,
  .home-page > .section-title,
  .feature-banner,
  .home-projects {
    width: calc(100% - 60px);
  }

  .home-page .home-hero,
  .home-page .two-column,
  .home-page .contact-card,
  .home-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-hero,
  .home-page .two-column {
    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;
  }

  .feature-banner h2 {
    left: 8%;
    width: 84%;
  }

  .home-projects {
    gap: 28px;
    min-height: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .home-page .contact-card {
    gap: 35px;
  }

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

@media (max-width: 640px) {
  .home-page {
    padding-top: 30px;
  }

  .home-page > .content-card,
  .home-page > .section-title,
  .feature-banner,
  .home-projects {
    width: 100%;
  }

  .home-page > .content-card {
    margin-bottom: 55px;
    padding: 34px 15px;
    box-shadow: none;
  }

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

  .home-page .home-card-column {
    padding-top: 0;
  }

  .home-page h1,
  .home-page h2 {
    font-size: 30px;
  }

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

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

  .home-page .home-hero .home-card-column:nth-child(2) h1 {
    margin-bottom: 28px;
  }

  .home-page .home-hero .home-card-column:nth-child(2) .button {
    margin: 28px 0 34px;
  }

  .feature-banner {
    height: 420px;
  }

  .feature-banner h2 {
    top: 155px;
    left: 15px;
    width: calc(100% - 30px);
    min-height: 110px;
    font-size: 31px;
    line-height: 1.25;
  }

  .home-page > .section-title {
    height: 68px;
    margin-bottom: 34px;
  }

  .home-page > .section-title h2 {
    padding: 14px 15px;
    font-size: 36px;
    line-height: 40px;
  }

  .home-projects {
    margin-bottom: 55px;
    padding: 24px 15px 34px;
  }

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

  .home-project-copy {
    padding: 23px 0 0;
  }

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

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

  .home-page .contact-logo {
    padding-top: 0;
  }

  .home-page .contact-form {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .home-page h1,
  .home-page h2 {
    font-size: 27px;
  }

  .feature-banner h2 {
    font-size: 27px;
  }

  .home-page > .section-title h2 {
    font-size: 30px;
  }
}
