/* ======================================
   AMORA – Membership (Single Card)
====================================== */

.amora-member{
  --brown:#3C1F1A;
  --gold:#F1BF50;
  --paper:#F6F1EC;
  --ink:#2D2926;

  padding: clamp(32px, 6vw, 80px) 0;
}

.amora-member *{ box-sizing: border-box; }

.amora-member__card{
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px);
  border-radius: 24px;

  background: linear-gradient(180deg,#fff 0%,#fff 60%,rgba(246,241,236,.9) 100%);
  border: 1px solid rgba(60,31,26,.10);
  box-shadow: 0 22px 48px rgba(0,0,0,.12);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* soft gold glow */
.amora-member__card:before{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle,
    rgba(241,191,80,.28),
    rgba(241,191,80,.12) 55%,
    rgba(241,191,80,0) 72%
  );
  pointer-events:none;
}

/* Image */
.amora-member__image{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.amora-member__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hover image rises slightly */
.amora-member__card:hover .amora-member__image{
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,0,0,.22);
}

/* Content */
.amora-member__content{
  text-align: left;
}

.amora-member__title{
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.2;
}

.amora-member__text{
  margin: 0 0 18px;
  color: rgba(45,41,38,.7);
  line-height: 1.7;
  font-size: 15px;
}

/* Button – locked color */
.amora-member__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 20px;
  border-radius: 999px;

  background: #2a1410;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: .02em;

  box-shadow: 0 12px 26px rgba(60,31,26,.28);
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease;
}

.amora-member__btn:hover,
.amora-member__btn:focus,
.amora-member__btn:active,
.amora-member__btn:visited{
  color: #fff !important;
}

.amora-member__btn:hover{
  background: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(60,31,26,.34);
}

/* Mobile */
@media (max-width: 820px){
  .amora-member__card{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .amora-member__content{
    text-align: center;
  }
}