/* Premium v6 — compact horizontal decision cards (approved Variant A). */

.choices{
  padding:78px 0 92px;
  background:#fffaf6;
}
.choices .section-heading{
  margin-bottom:38px;
}
.choices .section-heading h2{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  font-family:var(--sans);
  font-size:12px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold-dark);
}
.choices .section-heading h2::before,
.choices .section-heading h2::after{
  content:"";
  width:36px;
  height:1px;
  background:rgba(156,122,91,.45);
}
.choices .section-heading p{
  margin-top:10px;
  font-size:17px;
  color:var(--muted);
}
.choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}
.choice-card,
.choice-card:last-child{
  display:grid;
  grid-template-columns:minmax(0,42%) minmax(0,58%);
  min-height:294px;
  transform:none;
  border-radius:26px;
  border:1px solid rgba(156,122,91,.14);
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,252,248,.98));
  overflow:hidden;
  box-shadow:0 15px 36px rgba(78,57,41,.07);
}
.choice-card:hover,
.choice-card:last-child:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 44px rgba(78,57,41,.11);
}
.choice-image{
  position:relative;
  min-height:294px;
  aspect-ratio:auto;
  overflow:hidden;
  margin:16px 0 16px 16px;
  border-radius:20px;
}
.choice-image::after{display:none}
.choice-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
}
.choice-body{
  padding:28px 30px 28px 32px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.choice-body .card-index{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  margin-bottom:18px;
  padding:0 14px;
  border:1px solid rgba(156,122,91,.18);
  border-radius:999px;
  background:rgba(244,236,229,.8);
  color:var(--gold-dark);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}
.choice-body h3{
  margin-bottom:12px;
  font-size:clamp(30px,2.4vw,38px);
  line-height:1.02;
}
.choice-body p{
  max-width:34ch;
  margin-bottom:20px;
  font-size:13px;
  line-height:1.75;
  color:#5b4f46;
}
.choice-body .btn{
  margin-top:auto;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-size:11px;
}

@media(max-width:990px){
  .choices{padding:64px 0 72px}
  .choice-grid{grid-template-columns:1fr;gap:18px}
  .choice-card,
  .choice-card:last-child{grid-template-columns:minmax(0,38%) minmax(0,62%);min-height:270px}
  .choice-image{min-height:238px}
}

@media(max-width:700px){
  .choices{padding:50px 0 58px}
  .choices .section-heading{margin-bottom:26px}
  .choices .section-heading h2{gap:10px;font-size:9px;letter-spacing:.18em}
  .choices .section-heading h2::before,
  .choices .section-heading h2::after{width:22px}
  .choices .section-heading p{font-size:14px}
  .choice-grid{gap:14px}
  .choice-card,
  .choice-card:last-child{
    grid-template-columns:1fr;
    min-height:0;
    border-radius:22px;
  }
  .choice-image{
    min-height:0;
    height:180px;
    margin:12px 12px 0;
    border-radius:16px;
  }
  .choice-image img{border-radius:16px}
  .choice-body{padding:20px 20px 22px}
  .choice-body .card-index{min-height:32px;margin-bottom:14px;padding:0 12px;font-size:8px}
  .choice-body h3{font-size:31px}
  .choice-body p{font-size:12px;margin-bottom:17px}
  .choice-body .btn{min-height:46px}
}
