html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4,
.site-nav .nav-link {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
}
.brand-logo-shrink { display: none; }
.site-nav.scrolled .brand-logo-default { display: none; }
.site-nav.scrolled .brand-logo-shrink { display: inline-block; }
.site-nav {
  min-height: 92px;
  background: rgba(25, 22, 19, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.15);
  z-index: 1000;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

.site-nav {
  min-height: 92px;
  background: rgba(35, 28, 22, .78);
  transition: all .25s ease;
}

.site-nav.scrolled {
  min-height: 68px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.site-nav.scrolled .nav-link {
  color: #2d2925;
}

.site-nav.scrolled .nav-link:hover {
  color: #b8833e;
}

.site-brand img {
  max-height: 72px;
  transition: max-height .25s ease;
}

.site-nav.scrolled .site-brand img {
  max-height: 50px;
}

.brand-logo-shrink {
  display: none;
}

.site-nav.scrolled .brand-logo-default {
  display: none;
}

.site-nav.scrolled .brand-logo-shrink {
  display: inline-block;
}

.site-nav.scrolled .navbar-toggler {
  border-color: rgba(0,0,0,.25);
}

.site-nav.scrolled .navbar-toggler-icon {
  filter: invert(1);
}
.site-brand img {
  max-height: 72px;
  width: auto;
}

.navbar-nav .nav-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #d8aa63;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s ease;
}
.nav-link:focus,
.nav-link:active,
.dropdown-item:focus,
.dropdown-item:active {
  background: transparent;
  box-shadow: none;
}
.site-nav .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 1rem;
  transition: color .25s ease;
}
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 6px;
  height: 2px;
  background: #d8aa63;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* gold accent hover */
.site-nav .nav-link:hover {
  color: #d8aa63;
}
.dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}
.dropdown-item {
  text-transform: uppercase;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  background: #1f1a16;
  padding: .5rem 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.dropdown-item {
  color: #fff;
  font-size: .85rem;
  padding: .6rem 1.2rem;
  transition: all .2s ease;
}

.dropdown-item:hover {
  background: rgba(216,170,99,.12);
  color: #d8aa63;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all .2s ease;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}
.site-nav.scrolled {
  background: #fff;
}

.site-nav.scrolled .nav-link {
  color: #2d2925;
}

.site-nav.scrolled .nav-link:hover {
  color: #b8833e;
}

.site-nav.scrolled .nav-link::after {
  background: #b8833e;
}

.nav-caret {
  display: inline-block;
  width: .45rem;
  height: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.nav-item.dropdown:hover .nav-caret,
.nav-item.dropdown.show .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.home-slider {
  position: relative;
  height: 80vh;
  min-height: 680px;
  overflow: hidden;
  background: #1c1713;
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.home-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.home-slide-overlay {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28)),
          linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.05));
}

.home-slide-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  color: #fff;
}

.home-slide-content h1 {
  max-width: 960px;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.8vw, 6rem);
  line-height: .96;
  letter-spacing: .02em;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.home-slide-content h1 span {
  display: block;
  margin-bottom: .85rem;
  color: #d8aa63;
  font-size: .28em;
  line-height: 1.2;
  letter-spacing: .2em;
}

.home-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 76px;
  transform: translateY(-50%);
  border: 0;
  color: #fff;
  background: rgba(0,0,0,.35);
  font-size: 3.5rem;
  line-height: 1;
}

.home-slider-btn:hover {
  background: rgba(0,0,0,.62);
}

.home-slider-prev { left: 1.25rem; }
.home-slider-next { right: 1.25rem; }

.home-section {
  padding: 5.5rem 0;
}
main.site-main {
  min-height: calc(100vh - 150px - 180px);
  padding-top: 98px; /* adjust if header height changes */
}

.btn-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.45rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-site::after {
  content: '›';
  font-size: 1.3em;
  line-height: 1;
  transition: transform .25s ease;
}

.btn-site:hover::after {
  transform: translateX(4px);
}

.btn-site-gold {
  background: #d8aa63;
  color: #1f1a16;
  border-color: #d8aa63;
}

.btn-site-gold:hover {
  background: transparent;
  color: #d8aa63;
}

.btn-site-dark {
  background: #2d241e;
  color: #fff;
  border-color: #2d241e;
}

.btn-site-dark:hover {
  background: transparent;
  color: #2d241e;
}

.home-cta {
  margin-top: 2rem;

}

.section-cta {
  margin-top: 2rem;
}
.section-heading {
  max-width: 920px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: .03em;
}

.block-name {
  display: block;
  margin-bottom: .45rem;
  color: #b8833e;
  font-size: .42em;
  font-style: normal;
  letter-spacing: .18em;
}

.section-heading p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5b5148;
}

.gallery-grid {
  align-items: stretch;
}

.gallery-card {
  display: block;
  height: 100%;
  overflow: hidden;
  color: inherit;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card span {
  display: block;
  padding: 1.1rem 1.25rem 1.25rem;
  color: #5b5148;
}

.gallery-card strong {
  display: block;
  margin-bottom: .25rem;
  color: #2d2925;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.team-section {
  background: #2c241e;
  color: #fff;
}

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

.team-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  color: #2d2925;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.team-card small {
  display: block;
  padding: 1.25rem 1rem 0;
  color: #b8833e;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.team-card h3 {
  padding: .4rem 1rem 1.5rem;
  margin: 0;
  font-size: 1.35rem;
}

.page-hero {
  position: relative;
  margin-top: 0;
  padding: 1.75rem 0 3.25rem;

  color: #fff;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
}

.page-kicker {
  margin: 0 0 .5rem;
  color: #d8aa63;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
}

.page-hero h1 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 8px 24px rgb(108, 107, 107);
  color:#534e49;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem;
  max-width: 460px;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-size: .85rem;
}

.page-breadcrumbs,
.page-breadcrumbs a {
  color: rgba(255,255,255,.88);
}

.page-breadcrumbs a {
  text-decoration: none;
}

.page-breadcrumbs a:hover {
  color: #d8aa63;
}

.page-breadcrumbs strong {
  color: #d8aa63;
  font-weight: 600;
}

.page-content {
  position: relative;
  z-index: 3;
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 360px);
}

@media (max-width: 767px) {
  .page-hero-inner {
    display: block;
  }

}




.site-footer {
  background: #1f1a16;
  color: #fff;
}

.footer-main {
  padding: 4rem 0 3rem;
}

.site-footer h2 {
  color: #d8aa63;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.2rem;
}

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

.copyright {
  padding: 1rem 0;
  background: rgba(0,0,0,.25);
  font-size: .9rem;
}

@media (max-width: 767px) {
  .site-nav {
    min-height: auto;
    background: rgba(25, 22, 19, .95);
  }

  .home-slider {
    min-height: 580px;
  }

  .home-slide-content h1 {
    font-size: 2.45rem;
  }

  .home-slider-btn {
    display: none;
  }

  .gallery-card img,
  .team-card img {
    height: 240px;
  }
}

.team-page .team-bio {
  color: #5b5148;
  font-size: 1.05rem;
  line-height: 1.85;
}

.team-page .team-bio p:last-child {
  margin-bottom: 0;
}

.team-page hr {
  border-color: rgba(0, 0, 0, .12);
}

.team-page .h3 {
  color: #2d2925;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
}

@media (max-width: 767px) {
  .team-page .section-heading {
    text-align: left !important;
  }
}

.btn-gallatin {
  --bs-btn-color: #fff;
  --bs-btn-bg: #8a5a2b;
  --bs-btn-border-color: #8a5a2b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6f4721;
  --bs-btn-hover-border-color: #6f4721;
  --bs-btn-focus-shadow-rgb: 138, 90, 43;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5f3d1c;
  --bs-btn-active-border-color: #5f3d1c;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #8a5a2b;
  --bs-btn-disabled-border-color: #8a5a2b;

  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  transition:
          transform .22s ease,
          box-shadow .22s ease,
          background-color .22s ease,
          border-color .22s ease;
}

.btn-gallatin::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
          120deg,
          transparent 0%,
          rgba(255, 255, 255, .22) 45%,
          transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn-gallatin:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(95, 61, 28, .28);
}

.btn-gallatin:hover::before {
  transform: translateX(120%);
}

.btn-gallatin:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(95, 61, 28, .22);
}

@media (prefers-reduced-motion: reduce) {
  .btn-gallatin,
  .btn-gallatin::before {
    transition: none;
  }

  .btn-gallatin:hover,
  .btn-gallatin:active {
    transform: none;
  }
}