/* ============================================================
   SALA HOME — Section styles cho trang chủ tái cấu trúc
   6 sections: Hero · Định vị · Sản phẩm · KĐT · Master 3D · Tiện ích
   ============================================================ */

/* ── VIDEO MODAL ─────────────────────────────────────────── */
.sala-vmodal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
}
.sala-vmodal.is-open { opacity: 1; pointer-events: all; }
.sala-vmodal__bd {
  position: absolute; inset: 0;
  background: rgba(20,16,12,.92); cursor: pointer;
  backdrop-filter: blur(6px);
}
.sala-vmodal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 960px; aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 48px 120px rgba(0,0,0,.7);
}
.sala-vmodal__box iframe { width: 100%; height: 100%; border: none; display: block; }
.sala-vmodal__close {
  position: absolute; top: -42px; right: 0;
  color: rgba(234,220,194,.75); font-size: .75rem;
  letter-spacing: .12em; font-family: var(--font-body);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  transition: color .2s;
}
.sala-vmodal__close:hover { color: #fff; }

/* ── HERO PLAY CTA ───────────────────────────────────────── */
.sala-hero__play-cta {
  display: inline-flex; align-items: center; gap: 18px;
  margin-top: 28px; cursor: pointer;
  color: var(--color-text-inverse); border: none; background: none;
  font-family: var(--font-body); font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  transition: opacity .25s;
}
.sala-hero__play-cta:hover { opacity: .75; }
.sala-hero__play-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid rgba(188,142,73,.55);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.sala-hero__play-ring::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(188,142,73,.25);
  animation: ring-pulse 2.6s ease-in-out infinite;
}
.sala-hero__play-ring::after {
  content: ''; position: absolute; inset: -22px; border-radius: 50%;
  border: 1px solid rgba(188,142,73,.1);
  animation: ring-pulse 2.6s ease-in-out .5s infinite;
}
.sala-hero__play-tri {
  width: 0; height: 0;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-left: 17px solid var(--sala-yellow); margin-left: 5px;
}
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.2); opacity: 0; }
}

/* ── SECTION 2 · ĐỊNH VỊ & TẦM NHÌN ─────────────────────── */
.sala-sec-positioning {
  padding: var(--section-padding) var(--sala-pad);
  background: var(--color-bg); overflow: hidden;
}
.sala-positioning__grid {
  max-width: var(--sala-max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px); align-items: center;
}
.sala-positioning__statement {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem,3vw,2.7rem); font-weight: 500;
  line-height: 1.22; letter-spacing: -.01em;
  color: var(--color-text-primary); margin: 24px 0 20px;
}
.sala-positioning__statement em { font-style: italic; color: var(--sala-yellow); }
.sala-positioning__body {
  font-size: 1.02rem; line-height: 1.78;
  color: var(--color-text-secondary); max-width: 44ch;
}
.sala-pos-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 28px; margin-top: 40px; padding-top: 36px;
  border-top: 1px solid var(--color-border);
}
.sala-pos-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem,3.2vw,2.9rem); font-weight: 600;
  color: var(--color-text-primary); line-height: 1; letter-spacing: -.025em;
}
.sala-pos-stat__num em { font-style: normal; color: var(--sala-yellow); }
.sala-pos-stat__label {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--color-text-muted);
  margin-top: 6px; font-family: var(--font-body);
}
/* Map */
.sala-positioning__map {
  position: relative; aspect-ratio: 1/1.05; max-width: 520px; justify-self: end;
}
.sala-map-svg { width: 100%; height: 100%; display: block; }

/* ── SECTION 3 · DANH MỤC SẢN PHẨM ─────────────────────── */
.sala-sec-products {
  padding: var(--section-padding) var(--sala-pad);
  background: var(--color-bg-alt);
}
.sala-products__grid {
  max-width: var(--sala-max-w); margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.sala-prod-card {
  background: var(--color-surface-warm); overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform .45s var(--ease-sala), box-shadow .45s ease;
}
.sala-prod-card:hover { transform: translateY(-8px); box-shadow: 0 32px 60px rgba(61,49,42,.16); }
.sala-prod-card__media {
  aspect-ratio: 3/2; overflow: hidden; position: relative;
  background: var(--color-bg-dark);
}
.sala-prod-card__ph {
  width: 100%; height: 100%;
  transition: transform .7s var(--ease-sala);
}
.sala-prod-card:hover .sala-prod-card__ph { transform: scale(1.07); }
.sala-prod-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--sala-yellow); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px; font-family: var(--font-body);
}
.sala-prod-card__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.sala-prod-card__sub {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sala-yellow);
  font-family: var(--font-body); margin-bottom: 8px;
}
.sala-prod-card__name {
  font-family: var(--font-heading); font-size: 1.55rem; font-weight: 600;
  color: var(--color-text-primary); line-height: 1.18; margin-bottom: 12px;
}
.sala-prod-card__name em { font-style: italic; }
.sala-prod-card__desc {
  font-size: .9rem; color: var(--color-text-secondary);
  line-height: 1.68; margin-bottom: 20px; flex: 1;
}
.sala-prod-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.sala-prod-tag {
  border: 1px solid var(--color-border); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 9px; color: var(--color-text-muted);
  font-family: var(--font-body);
}
.sala-prod-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sala-yellow); font-family: var(--font-body);
  margin-top: auto; transition: gap .2s;
}
.sala-prod-card:hover .sala-prod-card__link { gap: 16px; }

/* ── SECTION 4 · GIỚI THIỆU KĐT SALA ───────────────────── */
.sala-sec-kdt {
  background: var(--color-bg-dark); position: relative; overflow: hidden;
}
.sala-kdt__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(188,142,73,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 85% 30%, rgba(200,34,84,.05) 0%, transparent 55%);
}
.sala-kdt__inner {
  max-width: var(--sala-max-w); margin: 0 auto;
  padding: var(--section-padding) var(--sala-pad);
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px); align-items: center;
}
/* Video frame */
.sala-kdt__video { position: relative; aspect-ratio: 16/10; cursor: pointer; overflow: hidden; }
.sala-kdt__video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#14100a 0%,#241b0c 40%,#1a1e28 100%);
}
.sala-kdt__video-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 35% 45%, rgba(188,142,73,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 70% 60%, rgba(60,110,150,.1) 0%, transparent 55%);
  animation: kdt-glow 7s ease-in-out infinite alternate;
}
@keyframes kdt-glow {
  from { opacity: .7; }
  to   { opacity: 1; }
}
.sala-kdt__video-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .55;
}
.sala-kdt__video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(135deg,rgba(20,16,10,.45),rgba(20,16,10,.15));
  transition: background .3s;
}
.sala-kdt__video:hover .sala-kdt__video-overlay {
  background: linear-gradient(135deg,rgba(20,16,10,.25),rgba(20,16,10,.05));
}
.sala-kdt__play {
  width: 84px; height: 84px; border-radius: 50%;
  border: 2px solid rgba(188,142,73,.65);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform .3s, border-color .3s;
}
.sala-kdt__video:hover .sala-kdt__play { transform: scale(1.08); border-color: var(--sala-yellow); }
.sala-kdt__play::before {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(188,142,73,.3); animation: ring-pulse 2.6s ease-in-out infinite;
}
.sala-kdt__play-tri {
  width: 0; height: 0;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  border-left: 22px solid var(--sala-yellow); margin-left: 6px;
}
.sala-kdt__video-label {
  color: rgba(234,220,194,.75); font-size: .73rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-body);
}
.sala-kdt__duration {
  position: absolute; bottom: 16px; right: 16px;
  font-family: var(--font-mono); font-size: .7rem;
  color: rgba(234,220,194,.55); letter-spacing: .06em;
}
/* Corner marks */
.sala-kdt__corner {
  position: absolute; width: 22px; height: 22px;
  border-color: var(--sala-yellow); border-style: solid; border-width: 0;
}
.sala-kdt__corner--tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; }
.sala-kdt__corner--tr { top: 12px; right: 12px; border-top-width: 1.5px; border-right-width: 1.5px; }
.sala-kdt__corner--bl { bottom: 12px; left: 12px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.sala-kdt__corner--br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
/* KĐT text */
.sala-kdt__heading {
  font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 500; line-height: 1.18; letter-spacing: -.01em;
  color: var(--color-text-inverse); margin: 20px 0 18px;
}
.sala-kdt__heading em { font-style: italic; color: var(--sala-yellow); }
.sala-kdt__desc {
  color: rgba(234,220,194,.68); line-height: 1.76; font-size: 1rem;
}
.sala-milestones {
  margin-top: 32px; display: flex; flex-direction: column; gap: 0;
}
.sala-milestone {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 18px; padding: 18px 0;
  border-bottom: 1px solid rgba(188,142,73,.14);
}
.sala-milestone:first-child { border-top: 1px solid rgba(188,142,73,.14); }
.sala-milestone__year {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: var(--sala-yellow); line-height: 1.3; align-self: center;
}
.sala-milestone__label {
  font-size: .875rem; color: rgba(234,220,194,.62);
  font-weight: 400; line-height: 1.4; align-self: center;
  font-family: var(--font-body);
}

/* ── SECTION 5 · MASTER 3D TOÀN KHU ─────────────────────── */
.sala-sec-master3d {
  padding: var(--section-padding) var(--sala-pad) calc(var(--section-padding) * .6);
  background: var(--color-bg);
}
.sala-sec-master3d__inner { max-width: var(--sala-max-w); margin: 0 auto; }
.sala-master3d__frame {
  margin-top: 52px; position: relative; overflow: hidden;
  border: 1px solid var(--color-border);
  background: #1a2028;
}
.sala-master3d__svg { display: block; width: 100%; height: auto; }
.sala-master3d__legend {
  position: absolute; top: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 9px; z-index: 4;
  background: rgba(20,16,12,.75); padding: 14px 16px;
  backdrop-filter: blur(4px);
}
.sala-legend-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(234,220,194,.75);
  font-family: var(--font-body);
}
.sala-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sala-master3d__cta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-top: 20px;
}
.sala-master3d__note {
  font-size: .78rem; color: var(--color-text-muted); font-family: var(--font-body);
  letter-spacing: .04em;
}

/* ── SECTION 6 · TIỆN ÍCH, DỊCH VỤ ─────────────────────── */
.sala-sec-amenities {
  padding: var(--section-padding) var(--sala-pad);
  background: var(--color-bg-dark); position: relative; overflow: hidden;
}
.sala-amenities__inner { max-width: var(--sala-max-w); margin: 0 auto; }
.sala-amenities__deco-num {
  position: absolute; right: var(--sala-pad); top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading); font-size: clamp(6rem,14vw,13rem);
  font-weight: 700; line-height: 1; letter-spacing: -.05em;
  color: rgba(188,142,73,.07); pointer-events: none; select: none;
}
.sala-am-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 2px; margin-top: 52px;
}
.sala-am-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(188,142,73,.1);
  padding: 30px 18px 26px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
  transition: background .35s, border-color .35s;
}
.sala-am-card:hover { background: rgba(188,142,73,.09); border-color: rgba(188,142,73,.32); }
.sala-am-icon {
  width: 44px; height: 44px; color: var(--sala-yellow); flex-shrink: 0;
  transition: transform .35s var(--ease-sala);
}
.sala-am-card:hover .sala-am-icon { transform: translateY(-5px); }
.sala-am-card__name {
  font-family: var(--font-heading); font-size: .98rem; font-weight: 500;
  color: var(--color-text-inverse); line-height: 1.3;
}
.sala-am-card__count {
  font-family: var(--font-mono); font-size: .68rem;
  color: var(--sala-yellow); letter-spacing: .1em;
}
.sala-am-card__sub {
  font-size: .72rem; color: rgba(234,220,194,.45);
  line-height: 1.55; font-family: var(--font-body);
}
/* Sub amenities strip */
.sala-am-sub-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 2px;
}
.sala-am-sub {
  background: rgba(255,255,255,.02); border: 1px solid rgba(188,142,73,.07);
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
  transition: background .3s;
}
.sala-am-sub:hover { background: rgba(188,142,73,.06); }
.sala-am-sub__icon { width: 26px; height: 26px; flex-shrink: 0; color: rgba(188,142,73,.6); }
.sala-am-sub__name {
  font-size: .8rem; font-weight: 600; color: rgba(234,220,194,.7);
  letter-spacing: .04em; font-family: var(--font-body);
}
.sala-am-sub__count {
  font-family: var(--font-mono); font-size: .67rem;
  color: rgba(188,142,73,.55); margin-top: 2px;
}

/* ── SECTION 3 · STORYTELLING SCROLL ────────────────────── */
.sala-story {
  background: var(--color-bg);
  /* overflow phải để mặc định (visible) — bất kỳ giá trị nào khác đều phá position:sticky */
}
.sala-story__header {
  max-width: var(--sala-max-w); margin: 0 auto;
  padding: var(--section-padding) var(--sala-pad) 0;
  text-align: center; padding-bottom: 0;
}
.sala-story__body {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--sala-max-w); margin: 0 auto;
  align-items: start; /* bắt buộc để sticky hoạt động trong grid */
}

/* Sticky visual panel */
.sala-story__visual {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden; align-self: start;
  background: var(--color-bg-dark);
}
.sala-story__img {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s var(--ease-sala);
}
.sala-story__img.is-active { opacity: 1; }
.sala-story__img .sala-ph { height: 100%; }

/* Image info overlay */
.sala-story__vis-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 36px; z-index: 10;
  background: linear-gradient(to top, rgba(20,14,8,.8) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px;
}
.sala-story__vis-label {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.1rem; font-weight: 300;
  color: rgba(234,220,194,.75); line-height: 1.3;
  transition: opacity .6s;
}
.sala-story__vis-counter {
  font-family: var(--font-mono); font-size: .68rem;
  color: rgba(188,142,73,.7); letter-spacing: .12em;
  white-space: nowrap;
}
/* Progress line */
.sala-story__vis-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--sala-yellow);
  transition: width .5s var(--ease-sala);
  z-index: 11;
}
/* Chapter type pill */
.sala-story__vis-type {
  position: absolute; top: 28px; left: 28px;
  padding: 5px 14px; z-index: 10;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-family: var(--font-body);
  border: 1px solid rgba(188,142,73,.45);
  color: rgba(234,220,194,.75);
  transition: all .5s;
}

/* Scroll chapters panel */
.sala-story__chapters { }
.sala-story__chapter {
  padding: clamp(72px,9vw,112px) clamp(36px,5vw,72px);
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative;
  border-bottom: 1px solid var(--color-border);
}
.sala-story__chapter:last-child { border-bottom: none; }

/* Alternate dark chapters */
.sala-story__chapter--dark {
  background: var(--color-bg-dark);
}
.sala-story__chapter--dark .sala-story__ch-title { color: var(--color-text-inverse); }
.sala-story__chapter--dark .sala-story__ch-en { color: rgba(234,220,194,.45); }
.sala-story__chapter--dark .sala-story__ch-desc { color: rgba(234,220,194,.65); }
.sala-story__chapter--dark .sala-story__tag { border-color: rgba(188,142,73,.25); color: rgba(234,220,194,.45); }
.sala-story__chapter--dark .sala-story__project {
  border-color: rgba(188,142,73,.18);
}
.sala-story__chapter--dark .sala-story__project:hover {
  border-color: var(--sala-yellow);
  background: rgba(188,142,73,.07);
}
.sala-story__chapter--dark .sala-story__project-name { color: var(--color-text-inverse); }
.sala-story__chapter--dark .sala-story__project-sub { color: rgba(234,220,194,.45); }
.sala-story__chapter--dark .sala-story__value { border-left-color: var(--sala-yellow); }
.sala-story__chapter--dark .sala-story__value-num { color: var(--sala-yellow); }
.sala-story__chapter--dark .sala-story__value-label { color: rgba(234,220,194,.45); }

/* Chapter typography */
.sala-story__ch-num {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .22em; color: var(--sala-yellow);
  margin-bottom: 20px; display: block;
}
.sala-story__ch-tag {
  display: inline-block; padding: 4px 12px; margin-bottom: 20px;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-family: var(--font-body);
  background: var(--sala-yellow); color: #fff;
}
.sala-story__ch-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem,4vw,3.4rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--color-text-primary); margin-bottom: 6px;
}
.sala-story__ch-en {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1rem; color: var(--color-text-muted); margin-bottom: 22px;
}
.sala-story__ch-desc {
  font-size: .98rem; line-height: 1.78;
  color: var(--color-text-secondary);
  max-width: 44ch; margin-bottom: 32px;
}

/* Project links */
.sala-story__projects {
  display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px;
}
.sala-story__project {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border: 1px solid var(--color-border);
  text-decoration: none; color: inherit;
  transition: border-color .3s, background .3s, transform .3s var(--ease-sala);
}
.sala-story__project:hover {
  border-color: var(--sala-yellow);
  background: rgba(188,142,73,.04);
  transform: translateX(5px);
}
.sala-story__project-left { flex: 1; }
.sala-story__project-name {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500;
  color: var(--color-text-primary); line-height: 1.2;
}
.sala-story__project-sub {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-text-muted); font-family: var(--font-body); margin-top: 3px;
}
.sala-story__project-arr {
  color: var(--sala-yellow); font-size: 1.1rem;
  transition: transform .25s; flex-shrink: 0; margin-left: 16px;
}
.sala-story__project:hover .sala-story__project-arr { transform: translateX(5px); }

/* Type tags row */
.sala-story__tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px;
}
.sala-story__tag {
  border: 1px solid var(--color-border); padding: 3px 11px;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text-muted); font-family: var(--font-body);
}

/* Value stat blocks */
.sala-story__values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 28px; margin-bottom: 28px;
}
.sala-story__value {
  padding: 18px 20px; border-left: 2px solid var(--sala-yellow);
}
.sala-story__value-num {
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 500;
  line-height: 1; letter-spacing: -.03em; color: var(--color-text-primary);
}
.sala-story__value-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-text-muted); margin-top: 6px; font-family: var(--font-body);
}

/* Quote pull */
.sala-story__pull {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.25rem,2.5vw,1.7rem); font-weight: 300;
  line-height: 1.45; color: var(--sala-yellow);
  border-left: 2px solid var(--sala-yellow);
  padding-left: 24px; margin: 28px 0; max-width: 40ch;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sala-am-grid { grid-template-columns: repeat(3,1fr); }
  .sala-am-sub-row { grid-template-columns: repeat(2,1fr); }
  .sala-products__grid { grid-template-columns: 1fr 1fr; }
  .sala-products__grid .sala-prod-card:last-child { grid-column: span 2; }
  .sala-products__grid .sala-prod-card:last-child .sala-prod-card__media { aspect-ratio: 16/6; }
}
@media (max-width: 860px) {
  .sala-story__body { grid-template-columns: 1fr; }
  .sala-story__visual {
    position: relative; height: 56vw;
    min-height: 260px; max-height: 480px;
  }
  .sala-story__chapter { min-height: auto; padding-block: 64px; }
  .sala-am-grid { grid-template-columns: repeat(2,1fr); }
  .sala-am-sub-row { grid-template-columns: 1fr 1fr; }
  .sala-products__grid { grid-template-columns: 1fr; }
  .sala-products__grid .sala-prod-card:last-child { grid-column: auto; }
  .sala-products__grid .sala-prod-card:last-child .sala-prod-card__media { aspect-ratio: 3/2; }
  .sala-am-grid { grid-template-columns: repeat(2,1fr); }
  .sala-am-sub-row { grid-template-columns: 1fr; }
  .sala-positioning__map { justify-self: start; max-width: 360px; }
}
@media (max-width: 540px) {
  .sala-am-grid { grid-template-columns: repeat(2,1fr); }
  .sala-am-sub-row { grid-template-columns: 1fr; }
}
