
:root {
  --dl-teal: #577a82;
  --dl-teal-dark: #405f66;
  --dl-taupe: #58564e;
  --dl-taupe-light: #737066;
  --dl-gold: #c7a84c;
  --dl-cream: #f7f4ec;
  --dl-ink: #242421;
  --dl-border: #dedbd2;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--dl-ink);
  background: #e8e5dc url("../../index/background.jpg") repeat;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 24px rgba(0,0,0,.12);
}

.brand-banner {
  display: block;
  width: 100%;
  height: auto;
}

.navbar-dl {
  --bs-navbar-padding-y: 0;
  background: var(--dl-taupe);
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.navbar-dl .navbar-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
  padding: .8rem 0;
}
.navbar-dl .nav-link {
  color: rgba(255,255,255,.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  white-space: nowrap;
  padding: 1rem .82rem !important;
  border-left: 1px solid rgba(255,255,255,.18);
}
.navbar-dl .nav-item:last-child .nav-link { border-right: 1px solid rgba(255,255,255,.18); }
.navbar-dl .nav-link:hover,
.navbar-dl .nav-link:focus,
.navbar-dl .nav-link.active {
  color: #fff;
  background: var(--dl-taupe-light);
}
.navbar-dl .navbar-toggler {
  border-color: rgba(255,255,255,.55);
  margin: .55rem 0;
}
.navbar-dl .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255,255,255,.18); }

main { padding: clamp(1.3rem, 3vw, 2.4rem); }

.page-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.35rem;
  color: var(--dl-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  line-height: 1.15;
}
.page-title img { width: 56px; height: 56px; flex: 0 0 auto; }
.lead-copy { font-size: clamp(1.07rem, 1.8vw, 1.24rem); }
.content-copy { font-size: 1.08rem; }
.content-copy a { color: var(--dl-teal-dark); }
.content-copy a:hover { color: var(--dl-taupe); }

.feature-list {
  padding-left: 1.2rem;
  font-size: 1.08rem;
}
.feature-list li { margin-bottom: .3rem; }

.photo-card {
  overflow: hidden;
  border: 1px solid var(--dl-border);
  border-radius: .45rem;
  background: #fff;
  height: 100%;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card.fixed-ratio { aspect-ratio: 4 / 3; }

.subheading {
  color: var(--dl-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.info-panel {
  background: var(--dl-cream);
  border: 1px solid #e4dfd2;
  border-left: 4px solid var(--dl-gold);
  border-radius: .35rem;
  padding: 1.2rem 1.3rem;
}

.btn-dl {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--dl-teal-dark);
  --bs-btn-border-color: var(--dl-teal-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #334e54;
  --bs-btn-hover-border-color: #334e54;
  --bs-btn-focus-shadow-rgb: 64,95,102;
}

.ratio iframe { border: 0; }

.gallery-thumb {
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: .4rem;
  background: #eee;
  aspect-ratio: 1 / 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-thumb:hover img,
.gallery-thumb:focus img { transform: scale(1.035); }
.gallery-thumb:focus { outline: 3px solid rgba(87,122,130,.35); outline-offset: 2px; }

#galleryModal .modal-content { background: #121212; }
#galleryModal .modal-header { border: 0; color: #fff; }
#galleryModal .modal-body { padding-top: 0; }
#galleryModal img { max-height: 76vh; object-fit: contain; }

.contact-card a { word-break: break-word; }
.jotform-wrap { min-height: 520px; }

.privacy-copy h2,
.privacy-copy h3 {
  color: var(--dl-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin-top: 1.7rem;
}
.privacy-copy h3 { font-size: 1.45rem; }

.site-footer {
  border-top: 1px solid var(--dl-border);
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  padding: 1rem clamp(1.3rem, 3vw, 2.4rem) 1.4rem;
}
.site-footer a { color: #555; }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1090;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  background: #f2f2f0;
  color: #333;
  border: 1px solid #d4d4cf;
  border-radius: .5rem;
  box-shadow: 0 .4rem 1.4rem rgba(0,0,0,.2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}

@media (max-width: 991.98px) {
  .navbar-dl { --bs-navbar-padding-y: .1rem; }
  .navbar-dl .nav-link,
  .navbar-dl .nav-item:last-child .nav-link {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    padding: .72rem .25rem !important;
  }
}

@media (max-width: 575.98px) {
  body { background: #fff; }
  .site-shell { box-shadow: none; }
  main { padding-left: 1rem; padding-right: 1rem; }
  .page-title { align-items: flex-start; }
  .page-title img { width: 46px; height: 46px; }
}
