.elementor-147 .elementor-element.elementor-element-0d83bd2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-95bdb96 *//* ========= BASE ========= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "QTBookmann-BoldItalic", serif;
  font-style: italic;
  background: #fdf7ef;
  color: #1a1a1a;
}

/* ========= HEADER (same as other pages) ========= */

.jcd-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 240, 226, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e4d4bf;
}

.jcd-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* TEXT LOGO (replaces image logo) */
.jcd-text-logo {
  font-family: "QTBookmann-BoldItalic", serif;
  font-style: italic;
  font-weight: normal;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}

.jcd-text-logo:hover {
  opacity: 0.85;
}

/* Desktop nav */
.jcd-main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.jcd-main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}

.jcd-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #b88a4a;
  transition: width 0.2s ease;
}

.jcd-main-nav a:hover::after,
.jcd-main-nav a.is-active::after {
  width: 100%;
}

/* Blue Call Today button */
.jcd-call-blue {
  background: #0d6efd;
  color: #ffffff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.15s ease;
  margin-left: 1.5rem;
  text-decoration: none;
}

.jcd-call-blue:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
}

.jcd-call-blue-desktop {
  display: inline-flex;
}

.jcd-call-blue-mobile {
  display: none;
  margin-top: 1rem;
  width: fit-content;
}

/* Mobile menu toggle (hamburger) */
.jcd-menu-toggle {
  display: none;
  width: 34px;
  height: 28px;
  border: none;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.jcd-menu-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #3a2a18;
  border-radius: 999px;
}

/* Mobile nav */
.jcd-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 1.5rem 0.75rem;
  border-top: 1px solid #e4d4bf;
  background: #f9f0e2;
}

.jcd-mobile-nav a {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
}

.jcd-mobile-nav a:last-child {
  border-bottom: none;
}

.jcd-mobile-nav.is-open {
  display: flex;
}

/* ========= GALLERY LAYOUT ========= */

.jcd-gallery {
  padding: 3.5rem 1.5rem 4rem;
}

.jcd-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcd-gallery-title {
  font-size: clamp(2rem, 2.4vw + 1.4rem, 2.8rem);
  margin: 0 0 0.8rem;
  text-align: center;
}

.jcd-gallery-intro {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4a3a29;
}

.jcd-gallery-subtitle {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: normal;
}

/* Grid of images – responsive */
.jcd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.jcd-gallery-item {
  margin: 0;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #fdf9f3;
  border: 1px solid #e0d5c2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jcd-gallery-item img {
  display: block;
  width: 100%;
  height: auto;          /* NO cropping */
  object-fit: contain;   /* Show full image */
  border-radius: 0.75rem;
  margin-bottom: 0.6rem;
}

.jcd-gallery-item figcaption {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3f3122;
}

/* ========= RESPONSIVE ========= */

@media (max-width: 1024px) {
  .jcd-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .jcd-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Header behavior on mobile (same across site) */
  .jcd-header-inner {
    padding: 0.6rem 1rem;
  }

  .jcd-main-nav {
    display: none;
  }

  .jcd-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .jcd-call-blue-desktop {
    display: none;
  }

  .jcd-call-blue-mobile {
    display: inline-flex;
  }

  .jcd-gallery {
    padding: 3rem 1.25rem 3.5rem;
  }

  .jcd-gallery-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */