/* Marcela Prestige – Premium Page
   Scoped under .mpc to avoid affecting other pages.
*/

.mpc{
  --ink: #141414;
  --muted: #5a5a5a;
  --line: rgba(0,0,0,.10);
  --card: #ffffff;
  --soft: #f6f6f6;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 22px;

  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Breadcrumb */
.mpc-bc{
  margin: 18px 0 14px;
  font-size: 14px;
  color: #6a6a6a;
}
.mpc-bc a{ color:#444; text-decoration:none; }
.mpc-bc a:hover{ text-decoration:underline; }
.mpc-bc span{ margin: 0 8px; color:#9a9a9a; }

/* HERO */
.mpc-hero{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 480px at 14% 0%, rgba(225,177,44,.22), transparent 60%),
    linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
  color: #f5f5f5;
}
.mpc-hero__inner{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
}
.mpc-hero__copy{
  padding: 28px 26px 26px;
}
.mpc-hero h1{
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: .2px;
}
.mpc-hero__sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,.85);
  font-size: 18px;
}
.mpc-hero__lead{
  margin: 0 0 14px;
  max-width: 70ch;
  color: rgba(255,255,255,.90);
  line-height: 1.65;
}

/* Pills */
.mpc-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.mpc-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.mpc-pill b{ font-weight: 800; }

/* CTA buttons */
.mpc-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.mpc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  user-select: none;
}
.mpc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.mpc-btn--primary{
  background: var(--brand-yellow, #e1b12c);
  color: #101010;
}
.mpc-btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #ffffff;
}

/* Hero meta */
.mpc-hero__meta{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mpc-meta{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 12px 12px;
}
.mpc-meta__k{
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
}
.mpc-meta__v{
  font-size: 13.5px;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

/* Hero brand panel */
.mpc-hero__brand{
  border-left: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.10));
}
.mpc-hero__brand img{
  width: min(380px, 84%);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}
.mpc-hero__brandnote{
  text-align: center;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.4;
  max-width: 34ch;
}

/* Intro strip */
.mpc-strip{
  margin: 18px 0;
}
.mpc-strip__inner{
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.mpc-strip__title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: #1b1b1b;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.mpc-strip__content{
  display: grid;
  gap: 14px;
}
.mpc-strip__text{
  margin: 0;
  color: #333;
  line-height: 1.6;
  max-width: 52ch;
}
.mpc-strip__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.mpc-strip__list li{
  position: relative;
  padding-left: 16px;
  color: #262626;
  font-size: 14px;
  line-height: 1.45;
}
.mpc-strip__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-yellow, #e1b12c);
}

/* Sections */
.mpc-section{
  margin: 18px 0;
}
.mpc-section__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.mpc-section__head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: .2px;
}
.mpc-section__head p{
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.mpc-gallery{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 12px;
}
.mpc-shot{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #000;
  position: relative;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.mpc-shot--featured{
  grid-row: span 2;
}
.mpc-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.mpc-shot:hover img{ transform: scale(1.03); }
.mpc-shot figcaption{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
}

/* Note */
.mpc-note{
  margin-top: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: #444;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

/* Alt section background */
.mpc-section--alt{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, var(--soft), #fff);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  padding: 18px;
}

/* Two-column grid for specs/included */
.mpc-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mpc-cardbox{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.mpc-cardbox h2{
  margin: 0 0 12px;
  font-size: 20px;
}

/* Box list */
.mpc-listbox{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.mpc-listbox li{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 12px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.45;
}
.mpc-listbox li b{
  font-weight: 900;
  color: #1b1b1b;
  white-space: nowrap;
}
.mpc-listbox li span{
  color: #444;
  text-align: right;
}

/* Mini included grid */
.mpc-mini{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mpc-mini__item{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 12px 12px;
}
.mpc-mini__k{
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 6px;
}
.mpc-mini__v{
  font-weight: 900;
  color: #141414;
}

/* Terms callout */
.mpc-terms{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.18);
  background: #fff;
  padding: 12px 12px;
}
.mpc-terms__title{
  font-weight: 900;
  margin-bottom: 6px;
}
.mpc-terms__text{
  color: #444;
  line-height: 1.55;
}

/* Location */
.mpc-loc{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mpc-loc__box{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.mpc-loc__title{
  font-weight: 900;
  margin-bottom: 8px;
}
.mpc-loc__text{
  color: #444;
  line-height: 1.6;
}

/* Final CTA */
.mpc-final{
  margin: 18px 0 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 420px at 14% 0%, rgba(225,177,44,.22), transparent 60%),
    linear-gradient(180deg, #101010 0%, #171717 100%);
  color: #f2f2f2;
}
.mpc-final__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 18px;
}
.mpc-final h2{
  margin: 0 0 6px;
  font-size: 22px;
}
.mpc-final p{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
}
.mpc-final__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .mpc-hero__inner{ grid-template-columns: 1fr; }
  .mpc-hero__brand{ border-left: none; border-top: 1px solid rgba(255,255,255,.10); }
  .mpc-hero__meta{ grid-template-columns: 1fr; }
  .mpc-strip__inner{ grid-template-columns: 1fr; }
  .mpc-strip__title{ padding-right: 0; border-right: 0; }
  .mpc-strip__list{ grid-template-columns: 1fr; }
  .mpc-gallery{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .mpc-shot--featured{ grid-row: span 1; grid-column: span 2; }
  .mpc-grid2{ grid-template-columns: 1fr; }
  .mpc-loc{ grid-template-columns: 1fr; }
  .mpc-final__inner{ flex-direction: column; align-items: flex-start; }
}

.mpc-mapcard{
  margin-top: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  overflow: hidden;
}

.mpc-mapcard__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.mpc-mapcard__head h3{
  margin:0;
  font-size:16px;
  font-weight:900;
}

.mpc-mapcard__link{
  font-size:13px;
  text-decoration:none;
  color:#333;
}
.mpc-mapcard__link:hover{ text-decoration:underline; }
