:root {
  --naty-olive: #958800;
  --naty-olive-dark: #887c00;
  --naty-khaki: #aaa88b;
  --naty-text: #1c1c1c;
  --naty-footer: #252525;
  --naty-accent: #c85f58;
  --naty-blue: #168cc5;
}

html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--naty-text);
  background: var(--naty-khaki);
  font-size: 14px;
}

a { color: inherit; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-header { background: #fff; border-bottom: 5px solid #e3e3e3; }
.site-header .navbar { min-height: 80px; padding-top: .55rem; padding-bottom: .55rem; }
.navbar-brand img { width: min(100%, 432px); height: auto; display: block; }
.navbar-nav .nav-link {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  padding: .7rem .8rem !important;
  white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active { color: var(--naty-accent); }
.navbar-toggler { border-color: rgba(0,0,0,.16); }
.navbar-toggler:focus { box-shadow: 0 0 0 .12rem rgba(149,136,0,.25); }

.info-strip { background: var(--naty-olive); color: #fff; }
.info-strip .container { min-height: 61px; display: flex; align-items: center; }
.info-strip p { margin: 0; font-size: 12px; line-height: 1.55; }
.info-strip strong { font-weight: 700; }

.hero { position: relative; min-height: 545px; background: #747881 url('../images/site/hero.jpg') center center/cover no-repeat; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 44%, rgba(67,70,79,.13) 62%, rgba(86,89,98,.6) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 560px;
  margin-left: auto;
  padding: 82px 36px 50px;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.hero-copy h1 { font-size: clamp(2rem, 3.35vw, 3.2rem); line-height: 1.03; font-weight: 700; margin-bottom: 1.2rem; }
.hero-call { font-size: clamp(2rem, 3vw, 3rem); color: #fff3a3; text-align: right; line-height: 1.03; margin-top: .7rem; }
.hero-call small { display: block; font-size: .72em; }
.hero-mark { display: block; margin: 16px 0 0 auto; width: 90px; }

.content-area { flex: 1; background: var(--naty-khaki); }
.content-wrap { padding-top: 18px; padding-bottom: 28px; }
.page-title { font-size: 25px; font-weight: 700; margin: 0 0 14px; letter-spacing: .01em; }
.lead-copy, .page-copy { color: #fff; line-height: 1.58; }
.page-copy p { margin-bottom: 1.15rem; }

.sidebar-card { background: var(--naty-olive); color: #fff; padding: 11px; margin-left: auto; max-width: 370px; }
.sidebar-card img.banner { width: 100%; display: block; margin-bottom: 26px; }
.sidebar-card p { margin-bottom: 18px; line-height: 1.5; }
.sidebar-card strong { font-weight: 700; }
.sidebar-card img.cards { width: 96px; height: 30px; object-fit: contain; margin-top: 3px; }

.home-copy-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.home-copy { color: #fff; line-height: 1.6; }

.gallery-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.gallery-item {
  display: block;
  padding: 7px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 2px rgba(127,125,103,.14);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; background: #111; }
.gallery-item:focus { outline: 3px solid rgba(255,255,255,.7); outline-offset: 2px; }

.contact-intro {
  color: #fff;
  line-height: 1.55;
  background: rgba(255,255,255,.07);
  border-left: 4px solid var(--naty-olive);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.contact-intro a { color: #fff; font-weight: 700; }
.contact-form label { color: #fff; font-weight: 700; margin-bottom: 5px; }
.contact-form .required { color: #f22; }
.contact-form .form-control {
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  min-height: 38px;
  background: #fff;
}
.contact-form textarea.form-control { min-height: 130px; }
.contact-form .btn { font-weight: 400; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 22px; }
.contact-actions .btn { min-width: 180px; }

.site-footer { background: var(--naty-footer); color: #ddd; min-height: 64px; display: flex; align-items: center; margin-top: auto; }
.site-footer p { margin: 0; font-size: 12px; }

.modal-content { background: #202020; color: #fff; border: 0; }
.modal-header { border-bottom-color: rgba(255,255,255,.12); }
.modal-footer { border-top-color: rgba(255,255,255,.12); }
#galleryModalImage { width: 100%; max-height: 76vh; object-fit: contain; background: #111; }

@media (min-width: 992px) {
  .site-header .container, .info-strip .container, .content-wrap, .site-footer .container { max-width: 1180px; }
  .navbar-brand { flex: 0 1 432px; }
}

@media (max-width: 1199.98px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .site-header .navbar { min-height: 72px; }
  .navbar-brand { max-width: 360px; width: calc(100% - 70px); }
  .navbar-collapse { padding: .5rem 0 1rem; }
  .navbar-nav .nav-link { padding: .55rem 0 !important; }
  .info-strip .container { padding-top: 11px; padding-bottom: 11px; min-height: auto; }
  .hero { min-height: 445px; }
  .hero-copy { max-width: 480px; padding: 70px 24px 40px; }
  .sidebar-card { max-width: none; margin-top: 24px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  body { font-size: 13px; }
  .site-header { border-bottom-width: 3px; }
  .navbar-brand { max-width: 285px; }
  .info-strip p { font-size: 11px; }
  .info-strip .text-md-end { text-align: left !important; margin-top: 3px; }
  .hero { min-height: 390px; background-position: 38% center; }
  .hero::after { background: linear-gradient(0deg, rgba(60,62,70,.66), rgba(60,62,70,.02) 58%); }
  .hero-copy { max-width: 100%; min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; padding: 35px 18px 22px; }
  .hero-copy h1 { font-size: 1.7rem; max-width: 610px; }
  .hero-call { font-size: 1.85rem; text-align: left; }
  .hero-mark { margin-left: 0; width: 78px; }
  .content-wrap { padding-top: 16px; }
  .page-title { font-size: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .contact-actions .btn { flex: 1 1 calc(50% - 5px); min-width: 0; }
}

@media (max-width: 420px) {
  .navbar-brand { max-width: 235px; }
  .gallery-grid { gap: 9px; }
  .gallery-item { padding: 4px; }
  .contact-actions .btn { flex-basis: 100%; }
}

/* Secure contact form */
.contact-form { position: relative; max-width: 100%; overflow-wrap: anywhere; }
.contact-form .form-control { max-width: 100%; }
.contact-alert { max-width: 100%; overflow-wrap: anywhere; border-radius: 2px; }
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.captcha-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.38);
  padding: 14px;
  max-width: 440px;
}
.captcha-label { display: block; }
.contact-form .captcha-input { max-width: 140px; }
.contact-helper {
  color: rgba(255,255,255,.78) !important;
  font-size: 12px;
  font-style: italic;
}
.contact-policy-note {
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 12px 0 0;
}
@media (max-width: 575.98px) {
  .captcha-card { max-width: 100%; }
  .contact-form .captcha-input { max-width: 100%; }
}

/* Homepage Bootstrap sliding banner */
.home-slider {
  position: relative;
  background: #303236;
  overflow: hidden;
}
.home-slider .carousel,
.home-slider .carousel-inner,
.home-slider .carousel-item {
  min-height: 545px;
}
.home-slider .carousel-item {
  position: relative;
  background: #303236;
}
.home-slider .carousel-item > img {
  width: 100%;
  height: 545px;
  object-fit: cover;
  object-position: center;
}
.carousel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.76) 0%, rgba(10,10,10,.48) 43%, rgba(10,10,10,.16) 72%, rgba(10,10,10,.12) 100%);
}
.carousel-caption-wrap {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.carousel-caption-content {
  width: min(670px, 66%);
  color: #fff;
  padding: 46px 58px 62px 8px;
  text-shadow: 0 2px 5px rgba(0,0,0,.45);
  pointer-events: auto;
}
.slider-kicker {
  margin: 0 0 10px;
  color: #f3e784;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .12em;
}
.carousel-caption-content h1,
.carousel-caption-content h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.04;
  font-weight: 700;
  margin: 0 0 16px;
  max-width: 650px;
}
.carousel-caption-content p:not(.slider-kicker) {
  max-width: 610px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.95);
}
.slider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slider-actions .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  text-shadow: none;
}
.btn-slider-primary {
  color: #fff;
  background: var(--naty-olive);
  border: 1px solid var(--naty-olive);
}
.btn-slider-primary:hover,
.btn-slider-primary:focus {
  color: #fff;
  background: var(--naty-olive-dark);
  border-color: var(--naty-olive-dark);
}
.btn-slider-outline {
  color: #fff;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.88);
}
.btn-slider-outline:hover,
.btn-slider-outline:focus {
  color: #222;
  background: #fff;
  border-color: #fff;
}
.home-slider .carousel-indicators {
  z-index: 4;
  margin-bottom: 18px;
}
.home-slider .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border: 0;
  opacity: .62;
}
.home-slider .carousel-indicators .active { opacity: 1; }
.home-slider .carousel-control-prev,
.home-slider .carousel-control-next {
  width: 7%;
  z-index: 4;
}
.home-slider .carousel-control-prev-icon,
.home-slider .carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-size: 58% 58%;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background-color: rgba(0,0,0,.22);
}

@media (max-width: 991.98px) {
  .home-slider .carousel,
  .home-slider .carousel-inner,
  .home-slider .carousel-item { min-height: 475px; }
  .home-slider .carousel-item > img { height: 475px; }
  .carousel-caption-content {
    width: min(650px, 78%);
    padding: 38px 34px 56px 16px;
  }
  .carousel-caption-content h1,
  .carousel-caption-content h2 { font-size: clamp(2rem, 5vw, 3rem); }
}

@media (max-width: 767.98px) {
  .home-slider .carousel,
  .home-slider .carousel-inner,
  .home-slider .carousel-item { min-height: 470px; }
  .home-slider .carousel-item > img {
    height: 470px;
    object-position: 50% center;
  }
  .carousel-shade {
    background: linear-gradient(0deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.72) 47%, rgba(8,8,8,.1) 85%);
  }
  .carousel-caption-wrap { align-items: flex-end; }
  .carousel-caption-content {
    width: 100%;
    padding: 30px 38px 64px 18px;
  }
  .slider-kicker { font-size: 11px; margin-bottom: 7px; }
  .carousel-caption-content h1,
  .carousel-caption-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }
  .carousel-caption-content p:not(.slider-kicker) {
    font-size: 13px;
    line-height: 1.48;
    margin-bottom: 15px;
  }
  .slider-actions .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-slider .carousel-control-prev,
  .home-slider .carousel-control-next { width: 11%; }
}

@media (max-width: 480px) {
  .home-slider .carousel,
  .home-slider .carousel-inner,
  .home-slider .carousel-item { min-height: 495px; }
  .home-slider .carousel-item > img { height: 495px; }
  .carousel-caption-content { padding: 28px 32px 66px 16px; }
  .carousel-caption-content h1,
  .carousel-caption-content h2 { font-size: 1.75rem; }
  .slider-actions .btn { flex-basis: 100%; min-height: 42px; }
  .home-slider .carousel-control-prev-icon,
  .home-slider .carousel-control-next-icon { width: 1.9rem; height: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-slider .carousel-item { transition: none; }
}
