/* =========================
   INNER PAGES BASE
   ========================= */

.inner-page {
  min-height: 70vh;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.inner-page .container {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.inner-kicker {
  margin: 0 0 12px;
  direction: ltr;
  letter-spacing: 3px;
  font-size: 11px;
  color: #a27631;
  font-weight: 800;
}

.inner-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.55;
  font-weight: 800;
  color: #121212;
}

/* =========================
   INNER HERO - COMPACT
   ========================= */

.inner-hero-header {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  color: #fff;
  background: #101010;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../../images/inner/cultural-hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .76), rgba(0, 0, 0, .34) 45%, rgba(0, 0, 0, .78)),
    linear-gradient(to left, rgba(0, 0, 0, .18), rgba(0, 0, 0, .62));
}

.inner-top-nav {
  position: relative;
  z-index: 4;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 2px solid rgba(255, 255, 255, .92);
}

.inner-brand {
  color: #fff;
  text-decoration: none;
  direction: ltr;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .7);
  flex: 0 0 auto;
}

.inner-brand strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
}

.inner-brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: .86;
}

.inner-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.inner-menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  padding-bottom: 7px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  transition: color .25s ease;
}

.inner-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d9a842;
  transition: width .25s ease;
}

.inner-menu a:hover,
.inner-menu a.active {
  color: #d9a842;
}

.inner-menu a:hover::after,
.inner-menu a.active::after {
  width: 100%;
}

.inner-hero-content {
  position: relative;
  z-index: 4;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  min-height: calc(42vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  padding: 18px 0 34px;
  opacity: 1;
  transform: translateX(0);
  animation: innerHeroIn 1.15s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes innerHeroIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.inner-hero-kicker {
  margin: 0 0 10px;
  direction: ltr;
  letter-spacing: 4px;
  font-size: 10.5px;
  font-weight: 800;
  color: #d9a842;
}

.inner-hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
}

.inner-hero-content p {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  line-height: 2.15;
  color: rgba(255, 255, 255, .90);
}

/* =========================
   CULTURAL PAGE
   ========================= */

.cultural-hero-bridge {
  position: relative;
  padding: 78px 0 66px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .94), rgba(255, 255, 255, .98)),
    url("../../images/inner/cultural-hero.jpg") center/cover no-repeat;
}

.cultural-hero-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(162, 118, 49, .13), transparent 32%),
    radial-gradient(circle at 84% 86%, rgba(162, 118, 49, .10), transparent 30%);
  pointer-events: none;
}

.cultural-bridge-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 54px;
  align-items: center;
}

.cultural-bridge-text h2,
.cultural-program-text h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.65;
  font-weight: 800;
}

.cultural-bridge-text h2 {
  color: #111;
}

.cultural-bridge-text p {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 2.35;
  color: #3f3f3f;
}

.cultural-bridge-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .95), rgba(42, 34, 24, .95)),
    url("../../images/inner/cultural-hero.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .20);
}

.cultural-bridge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  z-index: 1;
}

.cultural-bridge-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(217, 168, 66, .35);
  border-radius: 26px;
  pointer-events: none;
}

.cultural-bridge-card span,
.cultural-bridge-card strong,
.cultural-bridge-card p {
  position: relative;
  z-index: 3;
}

.cultural-bridge-card span {
  display: block;
  margin-bottom: 16px;
  color: #d9a842;
  font-size: 12px;
  font-weight: 800;
}

.cultural-bridge-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.55;
  font-weight: 800;
}

.cultural-bridge-card p {
  margin: 0;
  font-size: 14px;
  line-height: 2.25;
  color: rgba(255, 255, 255, .86);
}

.cultural-showcase {
  padding: 74px 0 110px;
  background: #fff;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.6;
  font-weight: 800;
  color: #111;
}

.section-heading p {
  margin: 0;
  font-size: 14.5px;
  line-height: 2.25;
  color: #555;
}

.cultural-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 238px;
  gap: 22px;
}

.cultural-card {
  position: relative;
  grid-column: span 4;
  border-radius: 30px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .14);
  isolation: isolate;
}

.cultural-card-feature {
  grid-column: span 8;
  grid-row: span 2;
}

.cultural-card-wide {
  grid-column: span 8;
}

.cultural-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 1.15s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s cubic-bezier(.16, 1, .3, 1);
}

.cultural-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .86), rgba(0, 0, 0, .24) 58%, rgba(0, 0, 0, .16)),
    linear-gradient(to left, rgba(0, 0, 0, .10), rgba(0, 0, 0, .44));
  pointer-events: none;
}

.cultural-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  opacity: 0;
  transform: scale(.98);
  transition: .45s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.cultural-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  padding: 28px;
  color: #fff;
  transform: translateY(8px);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.cultural-card-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(217, 168, 66, .18);
  color: #d9a842;
  border: 1px solid rgba(217, 168, 66, .38);
  direction: ltr;
  font-size: 12px;
  font-weight: 800;
}

.cultural-card-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.cultural-card-content p {
  max-width: 560px;
  margin: 0;
  font-size: 13.5px;
  line-height: 2.05;
  color: rgba(255, 255, 255, .86);
}

.cultural-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.04);
}

.cultural-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.cultural-card:hover .cultural-card-content {
  transform: translateY(0);
}

.cultural-program {
  padding: 92px 0;
  background:
    linear-gradient(rgba(12, 12, 12, .91), rgba(12, 12, 12, .94)),
    url("../../images/inner/cultural-hero.jpg") center/cover fixed no-repeat;
  color: #fff;
}

.cultural-program-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: center;
}

.cultural-program-text h2 {
  color: #fff;
}

.cultural-program-text p {
  margin: 0;
  max-width: 760px;
  font-size: 14.5px;
  line-height: 2.35;
  color: rgba(255, 255, 255, .80);
}

.cultural-program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cultural-program-list div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.cultural-program-list i {
  color: #d9a842;
  font-size: 30px;
}

.cultural-program-list span {
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  font-weight: 800;
}

.cultural-cta {
  padding: 92px 0 112px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .96), rgba(255, 255, 255, .98)),
    url("../../images/inner/cultural-hero.jpg") center/cover no-repeat;
}

.cultural-cta-card {
  position: relative;
  padding: 48px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(162, 118, 49, .18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.cultural-cta-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(162, 118, 49, .10);
}

.cultural-cta-card h2 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.7;
  font-weight: 800;
  color: #111;
}

.cultural-cta-card p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 14.5px;
  line-height: 2.2;
  color: #4a4a4a;
}

.cultural-cta-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.cultural-cta-card a:hover {
  background: #a27631;
  transform: translateY(-2px);
}

/* =========================
   HOTEL PAGE
   ========================= */

.hotel-page {
  background:
    radial-gradient(circle at 12% 9%, rgba(162, 118, 49, .10), transparent 28%),
    linear-gradient(180deg, #fff, #fbfaf7 42%, #fff);
}

.hotel-intro-section {
  padding: 92px 0 84px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .96), rgba(255, 255, 255, .99)),
    url("../../images/inner/hotel-hero.jpg") center/cover no-repeat;
}

.hotel-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 58px;
  align-items: center;
}

.hotel-intro-text h2,
.hotel-section-head h2,
.hotel-cta-box h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.65;
  font-weight: 900;
  color: #111;
}

.hotel-intro-text p,
.hotel-section-head p,
.hotel-cta-box p {
  margin: 0 0 16px;
  max-width: 780px;
  font-size: 15px;
  line-height: 2.35;
  color: #3f3f3f;
}

.hotel-intro-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hotel-intro-actions a,
.hotel-room-content a,
.hotel-cta-box a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.hotel-intro-actions a:hover,
.hotel-room-content a:hover,
.hotel-cta-box a:hover {
  background: #a27631;
  transform: translateY(-2px);
}

.hotel-intro-actions span {
  color: #a27631;
  font-size: 13px;
  font-weight: 800;
}

.hotel-intro-image {
  position: relative;
  height: 560px;
  margin: 0;
  border-radius: 38px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .18);
}

.hotel-intro-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 28px;
  pointer-events: none;
}

.hotel-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.hotel-intro-image:hover img {
  transform: scale(1.07);
}

.hotel-signature-section,
.hotel-gallery-section {
  padding: 88px 0 112px;
  background: #fff;
}

.hotel-section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.hotel-signature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 22px;
}

.hotel-signature-card {
  position: relative;
  grid-column: span 4;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .14);
  isolation: isolate;
}

.hotel-signature-large {
  grid-column: span 8;
  grid-row: span 2;
}

.hotel-signature-card img,
.hotel-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 1.15s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s cubic-bezier(.16, 1, .3, 1);
}

.hotel-signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .22) 58%, rgba(0, 0, 0, .14)),
    linear-gradient(to left, rgba(0, 0, 0, .10), rgba(0, 0, 0, .46));
  pointer-events: none;
}

.hotel-signature-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  opacity: 0;
  transform: scale(.98);
  transition: .45s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.hotel-card-overlay {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  transform: translateY(8px);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.hotel-card-overlay span,
.hotel-room-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  direction: ltr;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #d9a842;
}

.hotel-card-overlay span {
  width: 44px;
  height: 28px;
  background: rgba(217, 168, 66, .18);
  border: 1px solid rgba(217, 168, 66, .38);
}

.hotel-card-overlay h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 900;
}

.hotel-card-overlay p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13.5px;
  line-height: 2.05;
}

.hotel-signature-card:hover img,
.hotel-gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04);
}

.hotel-signature-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.hotel-signature-card:hover .hotel-card-overlay {
  transform: translateY(0);
}

.hotel-rooms-section {
  position: relative;
  padding: 94px 0 108px;
  background:
    linear-gradient(rgba(14, 14, 14, .92), rgba(14, 14, 14, .95)),
    url("../../images/inner/hotel-hero.jpg") center/cover fixed no-repeat;
  color: #fff;
}

.hotel-rooms-section .hotel-section-head h2 {
  color: #fff;
}

.hotel-rooms-section .hotel-section-head p {
  color: rgba(255, 255, 255, .78);
}

.hotel-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.hotel-room-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}

.hotel-room-card figure {
  height: 310px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.hotel-room-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1);
}

.hotel-room-card:hover img {
  transform: scale(1.08);
}

.hotel-room-content {
  padding: 28px;
}

.hotel-room-content span {
  margin-bottom: 10px;
}

.hotel-room-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}

.hotel-room-content p {
  min-height: 76px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 13.8px;
  line-height: 2.05;
}

.hotel-room-content a {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.hotel-gallery-item {
  margin: 0;
  position: relative;
  grid-column: span 4;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .12);
}

.hotel-gallery-big {
  grid-column: span 8;
  grid-row: span 2;
}

.hotel-gallery-wide {
  grid-column: span 8;
}

.hotel-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .22), transparent 58%);
  pointer-events: none;
}

.hotel-cta-section {
  padding: 92px 0 116px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .94), rgba(255, 255, 255, .98)),
    url("../../images/inner/hotel-hero.jpg") center/cover no-repeat;
}

.hotel-cta-box {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(162, 118, 49, .18);
  box-shadow: 0 30px 84px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
}

.hotel-cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(162, 118, 49, .10);
}

.hotel-cta-box h2,
.hotel-cta-box p,
.hotel-cta-box a,
.hotel-cta-box .inner-kicker {
  position: relative;
  z-index: 2;
}

.hotel-cta-box p {
  max-width: 760px;
  margin-bottom: 28px;
}

/* =========================
   ANIMATION SAFE
   ========================= */

.reveal-right,
.reveal-left {
  opacity: 1;
  transform: translateX(0);
}

.js .reveal-right,
.js .reveal-left {
  opacity: 0;
  transition:
    opacity 1.35s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.js .reveal-right {
  transform: translateX(105px);
}

.js .reveal-left {
  transform: translateX(-105px);
}

.js .reveal-right.is-visible,
.js .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:1100px) {
  .inner-menu {
    gap: 16px;
  }

  .inner-menu a {
    font-size: 12px;
  }

  .cultural-cards,
  .hotel-signature-grid,
  .hotel-gallery-grid {
    grid-auto-rows: 220px;
  }

  .cultural-card,
  .cultural-card-feature,
  .cultural-card-wide,
  .hotel-signature-card,
  .hotel-signature-large,
  .hotel-gallery-item,
  .hotel-gallery-big,
  .hotel-gallery-wide {
    grid-column: span 6;
  }

  .cultural-card-feature,
  .hotel-signature-large,
  .hotel-gallery-big {
    grid-row: span 2;
  }

  .hotel-rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:900px) {
  .inner-hero-header {
    min-height: auto;
  }

  .inner-top-nav {
    width: calc(100% - 42px);
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 16px 0 12px;
  }

  .inner-menu {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .inner-hero-content {
    width: calc(100% - 42px);
    min-height: 280px;
    padding: 30px 0 42px;
  }

  .inner-hero-content h1 {
    font-size: 30px;
  }

  .inner-hero-content p {
    font-size: 13.5px;
  }

  .cultural-bridge-grid,
  .cultural-program-grid,
  .hotel-intro-grid {
    grid-template-columns: 1fr;
  }

  .cultural-program-list {
    grid-template-columns: 1fr 1fr;
  }

  .hotel-intro-image {
    height: 420px;
  }

  .hotel-rooms-section {
    background-attachment: scroll;
  }
}

@media(max-width:720px) {
  .inner-page .container {
    width: calc(100% - 36px);
  }

  .inner-top-nav,
  .inner-hero-content {
    width: calc(100% - 36px);
  }

  .inner-brand strong {
    font-size: 20px;
  }

  .inner-brand small {
    font-size: 9.5px;
  }

  .inner-hero-content h1 {
    font-size: 26px;
  }

  .cultural-hero-bridge {
    padding: 62px 0 52px;
  }

  .cultural-bridge-card,
  .cultural-cta-card,
  .hotel-cta-box {
    padding: 28px;
    border-radius: 28px;
  }

  .cultural-showcase,
  .hotel-signature-section,
  .hotel-gallery-section {
    padding: 58px 0 84px;
  }

  .cultural-cards,
  .hotel-signature-grid,
  .hotel-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
    gap: 18px;
  }

  .cultural-card,
  .cultural-card-feature,
  .cultural-card-wide,
  .hotel-signature-card,
  .hotel-signature-large,
  .hotel-gallery-item,
  .hotel-gallery-big,
  .hotel-gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 24px;
  }

  .cultural-card-content,
  .hotel-card-overlay {
    padding: 24px;
  }

  .cultural-card-content h3,
  .hotel-card-overlay h3 {
    font-size: 22px;
  }

  .cultural-program {
    padding: 72px 0;
    background-attachment: scroll;
  }

  .cultural-program-list {
    grid-template-columns: 1fr;
  }

  .cultural-cta {
    padding: 74px 0 90px;
  }

  .hotel-intro-section {
    padding: 70px 0 64px;
  }

  .hotel-intro-image {
    height: 340px;
    border-radius: 28px;
  }

  .hotel-rooms-section {
    padding: 72px 0 84px;
  }

  .hotel-rooms-grid {
    grid-template-columns: 1fr;
  }

  .hotel-room-card {
    border-radius: 28px;
  }

  .hotel-room-card figure {
    height: 270px;
  }

  .hotel-cta-section {
    padding: 74px 0 90px;
  }
}

@media(max-width:420px) {
  .inner-menu {
    gap: 10px 14px;
  }

  .inner-menu a {
    font-size: 11.5px;
  }

  .inner-hero-content {
    min-height: 300px;
  }

  .cultural-cards,
  .hotel-signature-grid,
  .hotel-gallery-grid {
    grid-auto-rows: 280px;
  }

  .cultural-card-content p,
  .hotel-card-overlay p {
    font-size: 13px;
    line-height: 1.9;
  }

  .hotel-intro-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  .inner-hero-content,
  .reveal-right,
  .reveal-left,
  .cultural-card img,
  .cultural-card::after,
  .cultural-card-content,
  .cultural-cta-card a,
  .hotel-signature-card img,
  .hotel-gallery-item img,
  .hotel-intro-image img,
  .hotel-room-card img,
  .hotel-card-overlay,
  .hotel-cta-box a {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* =========================
   LIGHTER IMAGE / HERO OVERLAY FIX
   ========================= */

.inner-hero-bg {
  filter: brightness(1.08) contrast(1.04) saturate(1.08);
}

.inner-hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, .48)),
    linear-gradient(to left, rgba(0, 0, 0, .06), rgba(0, 0, 0, .34));
}

.cultural-card::before {
  background:
    linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, .14) 58%, rgba(0, 0, 0, .06)),
    linear-gradient(to left, rgba(0, 0, 0, .04), rgba(0, 0, 0, .22));
}

.hotel-signature-card::before {
  background:
    linear-gradient(to top, rgba(0, 0, 0, .60), rgba(0, 0, 0, .14) 58%, rgba(0, 0, 0, .06)),
    linear-gradient(to left, rgba(0, 0, 0, .04), rgba(0, 0, 0, .24));
}

.hotel-gallery-item::after,
.residence-gallery-item::after {
  background: linear-gradient(to top, rgba(0, 0, 0, .12), transparent 58%);
}

.cultural-program {
  background:
    linear-gradient(rgba(12, 12, 12, .76), rgba(12, 12, 12, .84)),
    url("../../images/inner/cultural-hero.jpg") center/cover fixed no-repeat;
}

.hotel-rooms-section {
  background:
    linear-gradient(rgba(14, 14, 14, .78), rgba(14, 14, 14, .86)),
    url("../../images/inner/hotel-hero.jpg") center/cover fixed no-repeat;
}
/* =========================
   HOTEL FULL VIDEO SECTION
   ========================= */

.hotel-video-section {
  position: relative;
  height: 85vh;
  /* نه 100vh که اذیت نکنه */
  overflow: hidden;
  margin-top: 40px;
}

/* ویدیو */
.hotel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* خیلی مهم: فیلتر برای هماهنگی با سایت */
  filter: brightness(0.82) contrast(1.08) saturate(1.05);
}

/* =========================
   HOTEL BOTTOM VIDEO
   فقط برای صفحه هتل
   ========================= */

.hotel-page+.hotel-bottom-video,
.hotel-bottom-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #111;
  margin: 0;
  padding: 0;
}

.hotel-bottom-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.05);
  z-index: 1;
}

.hotel-bottom-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, .55)),
    radial-gradient(circle at 72% 32%, rgba(162, 118, 49, .20), transparent 42%);
  pointer-events: none;
}

.hotel-bottom-video-content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  color: #fff;
}

.hotel-bottom-video-content p {
  margin: 0 0 14px;
  direction: ltr;
  letter-spacing: 4px;
  color: #d9a842;
  font-size: 11px;
  font-weight: 900;
}

.hotel-bottom-video-content h2 {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.7;
  font-weight: 900;
  color: #fff;
}

.hotel-bottom-video-content a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: #d9a842;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: .25s ease;
}

.hotel-bottom-video-content a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.hotel-bottom-video+.kd-footer {
  margin-top: 0;
}

@media(max-width:720px) {
  .hotel-bottom-video {
    height: 78vh;
    min-height: 520px;
  }

  .hotel-bottom-video-content {
    width: calc(100% - 36px);
  }

  .hotel-bottom-video-content h2 {
    font-size: 28px;
  }
}
.page-bottom-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #111;
  margin: 0;
}

.page-bottom-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.05);
  z-index: 1;
}

.page-bottom-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, .58)),
    radial-gradient(circle at 72% 32%, rgba(162, 118, 49, .20), transparent 42%);
}

.page-bottom-video-content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  text-align: right;
}

.page-bottom-video-content p {
  margin: 0 0 14px;
  direction: ltr;
  letter-spacing: 4px;
  color: #d9a842;
  font-size: 11px;
  font-weight: 900;
}

.page-bottom-video-content h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.7;
  font-weight: 900;
  color: #fff;
}

.page-bottom-video-content a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: #d9a842;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: .25s ease;
}

.page-bottom-video-content a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.page-bottom-video+.kd-footer {
  margin-top: 0;
}

@media(max-width:720px) {
  .page-bottom-video {
    height: 78vh;
    min-height: 520px;
  }

  .page-bottom-video-content {
    width: calc(100% - 36px);
  }

  .page-bottom-video-content h2 {
    font-size: 28px;
  }
}
/* =========================
   CULTURAL PROJECT INTRO FULL WIDTH FIX
   ========================= */

.cultural-hero-bridge {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 76px 0 !important;
}

.cultural-bridge-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  align-items: center !important;
}

.cultural-bridge-text {
  width: 100% !important;
  max-width: 100% !important;
}

.cultural-bridge-text h2 {
  max-width: 100% !important;
  margin: 0 0 14px !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.45 !important;
  font-weight: 950 !important;
}

.cultural-bridge-text p {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 14px !important;
  text-align: justify !important;
  font-size: 15.5px !important;
  line-height: 2 !important;
  font-weight: 850 !important;
  color: #2f2f2f !important;
}

.cultural-hero-bridge .inner-kicker {
  font-weight: 950 !important;
  margin-bottom: 14px !important;
}
/* =========================
   CULTURAL INTRO TIGHT SPACING FIX
   ========================= */

.inner-hero-header+.cultural-page,
.inner-hero-header+main {
  margin-top: 0 !important;
}

.cultural-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.cultural-hero-bridge {
  min-height: auto !important;
  padding: 34px 0 32px !important;
  margin: 0 !important;
  display: block !important;
}

.cultural-hero-bridge+section {
  margin-top: 0 !important;
  padding-top: 42px !important;
}

.cultural-bridge-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.cultural-bridge-text {
  margin: 0 !important;
}

.cultural-bridge-text h2 {
  margin: 0 0 10px !important;
  line-height: 1.35 !important;
}

.cultural-bridge-text p {
  margin: 0 0 10px !important;
  line-height: 1.8 !important;
}

.cultural-bridge-text p:last-child {
  margin-bottom: 0 !important;
}