/* =========================
   ABOUT HERO
========================= */
.about-hero {
  background: rgba(218, 218, 218, 0.55);            
  padding: clamp(32px, 4vw, 56px) 0;
  overflow: hidden;
}

.about-hero__wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: 70px 0 0;
  backdrop-filter: blur(6px);
}

.about-hero__content {
  max-width: 640px;
}

.about-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.65);
  margin: 0 0 10px;
}

.about-hero__title {
  font-size: clamp(34px, 4vw, 45px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #0f172a; /* deep navy */
  font-weight: 800;
}

.about-hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
  margin: 0 0 22px;
  max-width: 52ch;
}

.about-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

/* Buttons (can be replaced with your global button classes if you already have them) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  will-change: transform;
}

.btn:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.35); /* Hellper red glow */
  outline-offset: 2px;
}

.btn--primary {
  background: #222944; 
  color: #ffffff;
  text-transform: uppercase;
  /*box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);*/
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.28);
}

.btn--ghost {
  background: #df0024;
  color: #fcfcfc;
  text-transform: uppercase;
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.04);
}

.about-hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.about-hero__stats li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 160px;
}

.about-hero__stats .num {
  display: block;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.about-hero__stats .label {
  display: block;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.7);
  margin-top: 2px;
}

/* Right image column (NOT background) */
.about-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 320px;
}

.about-hero__img {
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;

  /* match the “floating” feel in the screenshot */
  filter: drop-shadow(0 18px 30px rgba(2, 6, 23, 0.18));
  transform: translateY(2px);
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero__wrap {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    justify-content: center;
    min-height: unset;
    padding-top: 10px;
  }

  .about-hero__img {
    width: min(560px, 92%);
  }
}

.about-main{
  background: #222944;
  border-radius: 25px;
  margin-bottom: 3rem;
}
/* =========================
   ABOUT BRAND SECTION
========================= */
.about-brand {
  padding: 0 0 clamp(28px, 4vw, 56px);
}

.about-brand__wrap {
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 4vw, 64px);
  align-items: center;

  /* Main panel */
  background: #222944; 
  border-radius: 26px;
  padding: clamp(22px, 3.5vw, 48px);
  position: relative;
  overflow: hidden;
}

/* Vector map background */
.about-brand__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/about/vector-map.png") center/cover no-repeat;
  opacity: 0.75;          /* tweak to match your look */
  filter: saturate(0.9);
  pointer-events: none;
}

/* Subtle dark overlay to improve contrast */
.about-brand__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: radial-gradient(
      900px 420px at 30% 45%,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.45)
    );*/
  pointer-events: none;
}

.about-brand__content,
.about-brand__media {
  position: relative; /* keep content above background layers */
  z-index: 1;
}

.about-brand__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-brand__lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  max-width: 62ch;
}

/* WHY US */
.about-brand__why-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
}

.about-brand__why-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  max-width: 56ch;
}

/* Right image frame */
.about-brand__media {
  display: flex;
  justify-content: flex-end;
}

.about-brand__media-frame {
  width: min(300px, 100%);
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;

  /* nice “card” edge */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.about-brand__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   GLASS RIM (NO CENTER BLUR)
========================= */
.glass-rim::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  /* Glass appearance */
  background: rgba(249, 248, 248, 0.23);
  backdrop-filter: blur(1.5px) saturate(150%);
  -webkit-backdrop-filter: blur(1.5px) saturate(150%);

  /* Glass edge */
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Inner highlight */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);

  /* IMPORTANT: cut out the center */
  padding: 8px; /* rim thickness */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
}

/* Optional subtle glass reflection */
.glass-rim::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0) 60%
  );
}



/* Fake slider dots (optional) */
.about-brand__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.about-brand__dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.about-brand__dots .dot.is-active {
  width: 18px;
  background: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 980px) {
  .about-brand__wrap {
    grid-template-columns: 1fr;
  }

  .about-brand__media {
    justify-content: center;
  }

  .about-brand__media-frame {
    width: min(420px, 100%);
  }
}

/* =========================
   ABOUT SHOWROOM Section
========================= */
.about-showroom{
  display: flex;
  justify-content: center; 
  padding: 0 0 3rem;
}

.about-showroom-media {
  display: flex;
  justify-content: flex-end;
}

.about-showroom-frame {
  position: relative;
  /*width: min(380px, 100%);*/
  aspect-ratio: 3 / 2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.about-showroom-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   GLASS RIM (EDGE ONLY)
========================= */
.about-showroom-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(10px);

  /*border: 1px solid rgba(255, 255, 255, 0.35);*/

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);

  padding: 10px; /* rim thickness */

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
}

/* Subtle reflection */
.about-showroom-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0) 60%
  );
}

/* =========================
  MISSION & VISION
========================= */
.about-mv{
  padding: clamp(28px, 4vw, 56px) 0;
}

.about-mv__wrap{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;

  background: #1f2a44;
  border-radius: 26px;
  padding: clamp(22px, 3.5vw, 46px);
  overflow: hidden;
  position: relative;
}

/* Left media */
.about-mv__media{
  display: flex;
  justify-content: flex-start;
}

.about-mv__media-frame{
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.about-mv__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Glass rim only (edge blur, center clear) */
.about-mv__glass::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(255,255,255,0.12);

  padding: 10px; /* rim thickness */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
}

.about-mv__glass::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0) 60%
  );
}

/* Right content */
.about-mv__title{
  margin: 0 0 14px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.about-mv__lead{
  margin: 0 0 28px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
  max-width: 70ch;
}

.about-mv__items{
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
}

.about-mv__item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.about-mv__icon{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.about-mv__item-title{
  margin: 0 0 6px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 16px;
}

.about-mv__item-body{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 14px;
}

/* Bottom nav buttons (visual only) */
.about-mv__nav{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.about-mv__btn{
  width: 56px;
  height: 44px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.about-mv__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.34);
}

.about-mv__btn--ghost{
  background: rgba(255,255,255,0.92);
  color: #0f172a;
}

.about-mv__btn--red{
  background: #dc2626;
  color: #fff;
}

.about-mv__arrow{
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1025px){
  .about-brand__media-frame{height: 380px;}
  .about-mv__title{font-size: clamp(28px, 3vw, 48px)}
  .about-mv__lead,
  .about-mv__item-body{font-size: 12px;}
}

/* Responsive */
@media (max-width: 980px){
  

  .about-mv__media{
    justify-content: center;
  }

  .about-mv__nav{
    justify-content: flex-start;
  }
}

@media (max-width: 600px){
  .about-mv__wrap{
    grid-template-columns: 1fr;
  }
}

/* =========================
   ABOUT: PARTNER CTA
========================= */
.about-partner{
  padding: clamp(44px, 6vw, 84px) 0;
  background: #ffffff;
}

.about-partner__wrap{
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.about-partner__title{
  margin: 0 0 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f172a; /* deep navy */
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.05;
}

.about-partner__subtitle{
  margin: 0 auto 22px;
  max-width: 78ch;
  color: rgba(15, 23, 42, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.about-partner__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, 100%);
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 19px;
  background: #dc2626; /* Hellpper red */
  color: #ffffff;
  box-shadow:
    0 16px 34px rgba(220, 38, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.about-partner__btn:hover{
  transform: translateY(-1px);
  box-shadow:
    0 20px 44px rgba(220, 38, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.about-partner__btn:focus-visible{
  outline: 3px solid rgba(220, 38, 38, 0.35);
  outline-offset: 3px;
}

/* Mobile: button full width */
@media (max-width: 620px){
  .about-partner__btn{
    min-width: 100%;
  }
}

/* =========================
   ABOUT: GALLERY GRID
========================= */
.about-gallery{
  padding: clamp(28px, 4vw, 56px) 0;
}

.about-gallery__wrap{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header: title + CTA */
.about-gallery__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(16px, 2.2vw, 26px);
}

.about-gallery__title{
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* CTA button */
.about-gallery__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;

  background: #dc2626;
  color: #fff;

  box-shadow:
    0 16px 34px rgba(220, 38, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.about-gallery__cta:hover{
  transform: translateY(-1px);
  box-shadow:
    0 20px 44px rgba(220, 38, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.about-gallery__cta:focus-visible{
  outline: 3px solid rgba(220, 38, 38, 0.35);
  outline-offset: 3px;
}

/* =========================
   GRID LAYOUT (KEY PART)
========================= */
.about-gallery__grid{
  display: grid;
  gap: 18px;

  /* Mimics screenshot: big left + 2 top + 1 wide bottom */
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 220px;
  grid-template-areas:
    "tall topL topR"
    "tall wide wide";
}

/* Cards */
.about-gallery__card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.about-gallery__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placement */
.about-gallery__card--tall{ grid-area: tall; }
.about-gallery__card--top-left{ grid-area: topL; }
.about-gallery__card--top-right{ grid-area: topR; }
.about-gallery__card--wide{ grid-area: wide; }

/* Paragraph */
.about-gallery__note{
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 14px;
  max-width: 1100px;
}

/* Secondary CTA row (nice on mobile, optional on desktop too) */
.about-gallery__cta-row{
  margin-top: 18px;
}

/* Bottom wide card now becomes a 3-image strip */
.about-gallery__card--split{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* IMPORTANT: no gaps */
  padding: 0; /* ensure edge-to-edge */
}

/* Make sure children fill perfectly */
.about-gallery__card--split .about-gallery__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prevent rounding issues inside */
.about-gallery__card--split .about-gallery__img{
  border-radius: 0;
}

/*Keep the border-radius only on the parent card, not the inner images 
— this ensures the outer corners stay rounded and the internal edges stay flush.*/

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .about-gallery__head{
    align-items: flex-start;
    flex-direction: column;
  }

  .about-gallery__grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 200px 200px;
    grid-template-areas:
      "tall tall"
      "topL topR"
      "wide wide";
  }
}

@media (max-width: 620px){
  .about-gallery__grid{
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px 200px;
    grid-template-areas:
      "tall"
      "topL"
      "topR"
      "wide";
  }

  .about-gallery__cta{
    width: 100%;
  }
}


/* =========================
   OUR SHOWROOMS 
========================= */
.sr-rooms{
  background: #1f2a44;
  padding: clamp(28px, 4vw, 56px) 0;
}

.sr-rooms__wrap{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-rooms__head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(18px, 3vw, 30px);
}

.sr-rooms__title{
  margin: 0 0 6px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.1;
}

.sr-rooms__subtitle{
  margin: 0 0 10px;
  color: rgba(59, 130, 246, 0.95); /* subtle blue accent like screenshot */
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.sr-rooms__lead{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 14px;
}

/* Layout */
.sr-rooms__layout{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(8px, 3.5vw, 10px);
  align-items: start;
}

/* =========================
   LEFT: ACCORDION LIST
========================= */
.sr-rooms__list{
  display: grid;
  gap: 10px;
}

.sr-rooms__item{
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.sr-rooms__item:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
}

.sr-rooms__item.is-active{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.sr-rooms__item-title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}

.sr-rooms__item-meta{
  grid-column: 1 / 2;
  color: rgba(255,255,255,0.70);
  font-size: 11px;
  margin-top: 2px;
}

.sr-rooms__chev{
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(15, 23, 42, 0.25);
  font-size: 20px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.sr-rooms__item.is-active .sr-rooms__chev{
  transform: rotate(180deg);
}


/* Accordion panel text */
.sr-rooms__panel{
  display: none;
  margin-top: -4px;
  padding: 0 14px 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 14px;
}

.sr-rooms__panel.is-open{
  display: block;
}

/* =========================
   RIGHT: IMAGE + OVERLAY
========================= */
.sr-rooms__preview{
  position: relative;
  min-height: 520px;
}

.sr-rooms__card{
  display: none;
  position: relative;
}

.sr-rooms__card.is-active{
  display: block;
}

/* Media frame using prior glass boundary styling */
.sr-rooms__media{
  position: relative;
  border-radius: 5px 22px 22px 5px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
  min-height: 520px;
}

.sr-rooms__img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Glass rim (edge-only blur) */
.sr-rooms__glass::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(2px) saturate(160%);
  -webkit-backdrop-filter: blur(2px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(255,255,255,0.12);
  padding: 10px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
}

.sr-rooms__glass::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0) 60%
  );
}

/* Overlay text */
.sr-rooms__overlay{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

  padding: 14px 14px;
  border-radius: 16px;

  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sr-rooms__ov-title{
  margin: 0 0 6px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.sr-rooms__ov-text,
.sr-rooms__ov-sub{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-size: 14px;
}

.sr-rooms__ov-sub{
  margin-top: 8px;
  color: rgba(255,255,255,0.70);
}

/* Responsive */
@media (max-width: 980px){
  .sr-rooms__layout{
    grid-template-columns: 1fr;
  }

  .sr-rooms__preview{
    min-height: unset;
  }

  .sr-rooms__media{
    min-height: 360px;
  }

  .sr-rooms__img{
    height: 360px;
  }
}

/* =========================
   ACCORDION PANEL ANIMATION
========================= */
.sr-rooms__panel{
  display: block;              /* change from none */
  max-height: 0;               /* collapsed */
  opacity: 0;
  overflow: hidden;

  margin-top: -4px;
  padding: 0 14px;             /* no bottom padding when closed */
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 14px;

  transition: max-height 320ms ease, opacity 240ms ease, padding 320ms ease;
}

.sr-rooms__panel.is-open{
  max-height: 220px;           /* set to a safe max (adjust if needed) */
  opacity: 1;
  padding: 0 14px 12px;        /* restore bottom padding when open */
}

/* =========================
   IMAGE / CARD TRANSITION
========================= */
.sr-rooms__preview{
  position: relative;
}

/* stack cards on top of each other */
.sr-rooms__card{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.995);
  pointer-events: none;

  transition: opacity 260ms ease, transform 320ms ease;
}

/* active becomes visible */
.sr-rooms__card.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* keep preview height stable */
.sr-rooms__preview{
  min-height: 520px;           /* same as image height */
}
@media (max-width: 980px){
  .sr-rooms__preview{ min-height: 360px; }
}
