.services2 {
  background: #f8f7f3;
}

.s2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.s2-card {
  border-radius: 16px;
  overflow: visible;
  /* background: #bf1010; */
  /* box-shadow: 0 24px 48px rgb(244 243 239); */
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── top-right concave notch + arrow button ── */
.s2-notch {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 84px;
  height: 84px;
  background: #f8f7f3;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 16px;
  z-index: 3;
}

.s2-notch::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 0 0, transparent 17.3px, #f8f7f3 18px);
}

.s2-notch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -18px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 0 0, transparent 17.3px, #f8f7f3 18px);
}

.s2-plus {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 58px;
  height: 58px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 4;
  transition: background .3s ease;
}

/* Sync hover: either element activates both */
.s2-plus:hover,
.s2-card:has(.s2-btn:hover) .s2-plus {
  background: #23242a;
}

.s2-card:has(.s2-plus:hover) .s2-btn {
  background: #c2a05f;
  color: #fff;
}

.s2-card:has(.s2-plus:hover) .s2-btn .s2-arrow {
  transform: translateX(4px);
}

.s2-plus svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── image area ── */
.s2-img {
  position: relative;
  height: 260px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  /* mask removed — badge commented out */
}

.s2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all .3s ease;
}

/* ── frosted number badge ── */
.s2-num {
  font-family: var(--serif, 'Playfair Display', Georgia, serif);
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  background: rgb(0 0 0 / .5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

.s2-num span {
  color: #c2a05f;
}

/* sync num badge with btn / plus hover */
.s2-num {
  transition: background .3s ease, border-color .3s ease;
}

.s2-num:hover,
.s2-card:has(.s2-btn:hover) .s2-num,
.s2-card:has(.s2-plus:hover) .s2-num {
  background: rgba(194, 160, 95, .2);
  border-color: rgba(194, 160, 95, .55);
}

.s2-card:has(.s2-num:hover) .s2-plus,
.s2-card:has(.s2-img:hover) .s2-plus {
  background: #23242a;
}

.s2-card:has(.s2-num:hover) .s2-btn,
.s2-card:has(.s2-img:hover) .s2-btn {
  background: #c2a05f;
  color: #fff;
}

.s2-card:has(.s2-num:hover) .s2-btn .s2-arrow,
.s2-card:has(.s2-img:hover) .s2-btn .s2-arrow {
  transform: translateX(4px);
}

.s2-card:has(.s2-img:hover) .s2-num {
  background: rgba(194, 160, 95, .2);
  border-color: rgba(194, 160, 95, .55);
}


/* ── gold badge sitting in the concave notch ── */
.s2-badge {
  position: absolute;
  top: calc(260px - 36px);
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #c2a05f;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(194, 160, 95, .35);
  transition: background .3s ease;
}


.s2-badge svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── body / content area ── */
.s2-body {
  flex: 1;
  padding: 28px 28px 28px;
  position: relative;
  background-color: #fff;
  background-image: radial-gradient(circle, #d8d4cc 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-direction: column;
}

.s2-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #23242a;
  margin-bottom: 12px;
}

.s2-desc {
  font-size: 15px;
  line-height: 1.72;
  color: #7a776e;
  margin-bottom: 24px;
  flex: 1;
}

/* ── view details button ── */
.s2-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: #f0ede6;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #6b6760;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}

.s2-btn:hover {
  background: #c2a05f;
  color: #fff;
}

.s2-btn .s2-arrow {
  font-size: 18px;
  transition: transform .3s ease;
}

.s2-btn:hover .s2-arrow {
  transform: translateX(4px);
}

/* ── section header spacing ── */
.services2 .section-header {
  padding-bottom: 48px;
}

/* ── responsive ── */
@media (max-width: 960px) {
  .s2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .s2-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .s2-img {
    height: 220px;
  }

  .s2-title {
    font-size: 20px;
  }

  .s2-num {
    font-size: 32px;
    top: auto;
    bottom: 12px;
    left: 12px;
    transform: none;
  }

  .s2-plus {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
  }

  .s2-plus svg {
    width: 16px;
    height: 16px;
  }
}