.home-title,
.home-section-title,
.home-booth-card__title,
.home-story__title,
.home-faq__title {
  font-family: Alike, serif;
  font-weight: bold;
  color: rgb(80, 34, 11);
}

.home-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
}

.home-intro__content {
  max-width: 860px;
}

.home-intro__text,
.home-section-text,
.home-body-text,
.home-faq__body {
  font-family: Alike, serif;
  color: #000;
  font-size: 18px;
  line-height: 1.7;
}

.home-intro {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
}

.home-cta-button {
  font-family: Alike, serif;
  background: var(--site-brown);
  color: var(--site-cream);
  padding: 0.6rem 1rem;
  display: inline-block;
}

.home-cta-button:hover,
.home-cta-button:focus,
.home-cta-button:active {
  background: var(--site-brown);
  color: var(--site-cream);
}

.home-booth-card__image {
  /* A fixed pixel height here (the old approach) crops brutally on mobile,
     where this image sits in a full-width column: at ~500px wide against
     these 2304x3456 (2:3) source photos, a 230px-tall box only showed
     about 30% of the photo's height, hiding the tripod legs and umbrella
     light rather than centering on the booth itself. aspect-ratio scales
     the box with whatever width it's actually given at each breakpoint,
     so the crop stays proportionally the same (and much lighter -- only
     ~10-15% trimmed off top/bottom) whether this is a full-width mobile
     card or a narrow column next to the desktop text layout. */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.home-booth-card__caption {
  font-family: Alike, serif;
  font-size: 0.8rem;
  color: #767676;
  text-align: center;
  margin: 0.4rem 0 0;
}

.home-gallery__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.home-gallery__image {
  height: 196px;
  width: auto;
  display: block;
}

.home-faq__title {
  padding-top: 15px;
  padding-bottom: 15px;
}

.home-faq__accordion .accordion-item {
  border: 0;
}

.home-faq__button {
  font-family: Alike, serif;
  font-weight: bold;
  color: rgb(80, 34, 11);
  background-color: transparent;
  box-shadow: none;
}

.home-faq__button:not(.collapsed) {
  color: rgb(80, 34, 11);
  background-color: transparent;
  box-shadow: none;
}

.home-faq__button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Fully override Bootstrap default accordion icon */
.home-faq__button::after {
  background-image: none !important;
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;

  width: 1.5rem;
  height: 1.5rem;

  margin-left: auto;

  font-size: 2rem;
  line-height: 1;            /* 👈 important */
  font-weight: 400;

  color: rgb(80, 34, 11) !important;

  transform: none !important;
  flex-shrink: 0;
}

.home-faq__button:not(.collapsed)::after {
  content: "−";
}

.home-faq__body {
  padding-top: 1rem;
}

.home-faq__cta {
  font-family: Alike, serif;
  background: var(--site-brown);
  color: var(--site-cream);
  width: 100px;
  margin: 5px 0 30px 20px;
}

.home-faq__cta:hover,
.home-faq__cta:focus,
.home-faq__cta:active {
  background: var(--site-brown);
  color: var(--site-cream);
}

.home-story__image {
  min-height: 300px;
}

.home-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(190px, 55%);
  margin: 0.65rem auto 1.1rem;
  color: rgba(177, 124, 70, 0.7);
}

.home-title-divider__line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(112, 67, 44, 0.24);
}

.home-title-divider__heart {
  margin: 0 0.6rem;
  font-size: 12px;
  line-height: 1;
}

/* =========================================================
   MOMENTS WORTH CHERISHING
   ========================================================= */

.home-moments {
  overflow: hidden;
  background: rgba(248, 231, 203, 0.22);
}

.home-moments .container {
  max-width: 1280px;
}

.home-moments__header {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.home-moments__header .home-section-title {
  margin-bottom: 0;
}

.home-moments__carousel {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.home-moments__viewport {
  width: 100%;
  overflow: hidden;
}

.home-moments__track {
  --moments-gap: 1rem;

  display: flex;
  align-items: stretch;
  gap: var(--moments-gap);
  width: max-content;

  will-change: transform;
  touch-action: pan-y;

  transition: transform 0.45s ease;
}

.home-moments__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.home-moments__track.is-resetting {
  transition: none;
}

.home-moments__item {
  position: relative;

  /*
   * One prominent centred image with neighbouring
   * images visible on both sides.
   */
  flex: 0 0 clamp(400px, 46vw, 480px);

  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;

  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: var(--site-shadow-soft);

  user-select: none;
  -webkit-user-drag: none;
}

.home-moments__image {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;

  transition: transform 0.3s ease;
}

.home-moments__item:hover .home-moments__image,
.home-moments__item:focus .home-moments__image {
  transform: scale(1.035);
}


/* Controls */

.home-moments__control {
  position: absolute;
  top: 50%;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;

  border: 1px solid rgba(112, 67, 44, 0.2);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: var(--site-text);
  box-shadow: 0 4px 14px rgba(80, 34, 11, 0.16);

  transform: translateY(-50%);

  transition:
    transform 0.15s ease,
    background-color 0.2s ease,
    box-shadow 0.15s ease;
}

.home-moments__control:hover,
.home-moments__control:focus {
  background: var(--site-cream);
  box-shadow: 0 6px 18px rgba(80, 34, 11, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.home-moments__control:focus-visible {
  outline: 2px solid var(--site-brown);
  outline-offset: 3px;
}

.home-moments__control span {
  display: block;
  margin-top: -3px;

  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.home-moments__control--previous {
  left: 1rem;
}

.home-moments__control--next {
  right: 1rem;
}

.home-moments__hint {
  margin-top: 1.25rem;
  padding: 0 1rem;

  color: rgba(80, 34, 11, 0.72);
  font-family: Alike, serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-booth-card {
    gap: 1.5rem;
}

/* Both the image and text columns start as plain w-100 flex items (see
   home.html), which without an explicit split just fight over space --
   the text's wrapping content lets it claim most of the row, squeezing
   the image down to a small thumbnail once flex-lg-row kicks in. Give
   the image a fixed share of the row instead, so it stays a real
   presence next to the text at any desktop width. */
@media (min-width: 992px) {
    .home-booth-card__media {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .home-booth-card__content {
        flex: 1 1 0%;
        min-width: 0;
    }
}

.home-booths .row {
    row-gap: 3rem;
}

.home-story .row {
    --bs-gutter-x: 3rem;
}

/* =========================================================
   SECTION SPACING
   ========================================================= */

.home-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .home-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
  .home-moments__carousel {
    max-width: 760px;
  }

  .home-moments__item {
    flex-basis: clamp(340px, 55vw, 420px);
  }
}


/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767.98px) {
  .home-moments {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .home-moments__header {
    margin-bottom: 1.5rem;
    padding: 0 1.25rem;
  }

  .home-moments__header .home-section-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .home-moments__header .home-section-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-moments__carousel {
    width: calc(100% + 1.5rem);
    max-width: none;
    margin-left: -0.75rem;
  }

  .home-moments__track {
    --moments-gap: 0.85rem;
  }

  .home-moments__item {
    flex: 0 0 min(78vw, 380px);
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .home-moments__control {
    width: 40px;
    height: 40px;
  }

  .home-moments__control span {
    font-size: 1.8rem;
  }

  .home-moments__control--previous {
    left: 0.85rem;
  }

  .home-moments__control--next {
    right: 0.85rem;
  }

  .home-moments__hint {
    margin-top: 1rem;
    font-size: 0.85rem;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 399.98px) {
  .home-moments__item {
    flex-basis: 76vw;
  }

  .home-moments__control {
    width: 36px;
    height: 36px;
  }

  .home-moments__control--previous {
    left: 0.55rem;
  }

  .home-moments__control--next {
    right: 0.55rem;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .home-moments__track,
  .home-moments__image,
  .home-moments__control {
    transition: none;
  }
}

/* Slightly more refined mobile title treatment */
/* Mobile title treatment */
@media (max-width: 767.98px) {
  .home-title {
    font-size: clamp(1rem, 4vw, 1.7rem);
  }

  .home-title-divider {
    margin-top: 0.8rem;
    margin-bottom: 1.15rem;
  }
}

@media (max-width: 991.98px) {
  .home-gallery__image {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}