/* Quieter homepage path chooser. Loaded after the existing home styles. */
.offerings {
  padding: 6rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: #f6ede5;
  overflow: hidden;
}

.offerings-header {
  width: 100%;
  max-width: 760px;
  margin: 0 0 2.25rem;
  text-align: left;
}

.offerings-header .section-label,
.offerings-header .section-title,
.offerings-header .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.offerings-header .section-title {
  max-width: 680px;
}

.offerings-header .section-subtitle {
  max-width: 600px;
}

.offerings-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  width: 100% !important;
  max-width: 1180px;
  margin: 0 auto;
}

.offering-card {
  display: grid !important;
  grid-template-columns: minmax(180px, 40%) minmax(0, 1fr);
  grid-template-rows: 1fr !important;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(62, 37, 55, 0.14);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(62, 37, 55, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.offering-card:hover {
  transform: none;
  border-color: rgba(202, 112, 90, 0.48);
  box-shadow: 0 18px 40px rgba(62, 37, 55, 0.12);
}

.offering-card-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: #3e2537;
}

.offering-card-visual::before,
.offering-card-visual::after {
  display: none;
}

.offering-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
  filter: saturate(0.88) contrast(0.98);
}

.offering-card-heading {
  margin-bottom: 1rem;
}

.offering-card-heading .tag {
  display: block;
  width: fit-content;
  margin: 0 0 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b45f51;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.offering-card-heading h3 {
  margin: 0;
  color: #3e2537;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: normal;
  text-shadow: none;
}

.offering-card-body {
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  padding: 1.65rem;
  background: #fffdf9;
}

.offering-card-body > p:not(.offering-meta-line) {
  margin: 0;
  color: #654f5f;
  font-size: 1rem;
  line-height: 1.62;
}

.offering-meta-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 1rem 0 1.35rem !important;
  padding-left: 1.25rem;
  color: #8b5a65 !important;
  font-size: 0.85rem !important;
  font-weight: 650;
  line-height: 1.2 !important;
}

.offering-meta-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid #ca705a;
  border-radius: 50%;
  transform: translateY(-50%);
}

.offering-meta-line::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 50%;
  width: 1px;
  height: 0.2rem;
  background: #ca705a;
  transform: translateY(-38%) rotate(35deg);
  transform-origin: bottom;
}

.offering-action {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 0.8rem 0.9rem 0.8rem 1.05rem;
  border: 1px solid #3e2537;
  border-radius: 6px;
  background: #3e2537 !important;
  color: #fffaf4 !important;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  box-shadow: none !important;
}

.offering-action:hover {
  background: #522f48 !important;
  border-color: #522f48;
  color: #fffaf4 !important;
  transform: none !important;
}

.offering-action:focus-visible {
  outline: 3px solid #e9a37f;
  outline-offset: 3px;
}

.offering-action-arrow {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.32);
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 920px) {
  .offerings {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .offerings-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 720px;
  }

  .offering-card {
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .offerings {
    padding: 4rem 1rem;
  }

  .offerings-header {
    margin-bottom: 1.65rem;
  }

  .offerings-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
    max-width: 100%;
  }

  .offering-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 210px auto !important;
    width: 100%;
    min-height: 0;
  }

  .offering-card-visual {
    height: 210px;
    min-height: 210px;
  }

  .offering-card-body {
    padding: 1.3rem;
  }

  .offering-card-heading h3 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offering-card.offering-action {
    transition: none;
  }
}
