:root {
  --ink: #201812;
  --muted: #6f6257;
  --sand: #f6efe3;
  --stone: #d8b982;
  --marigold: #d9902f;
  --indigo: #243b55;
  --terracotta: #a54f34;
  --white: #fffdf8;
  --line: rgba(32, 24, 18, .14);
  --shadow: 0 24px 70px rgba(32, 24, 18, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; object-fit: cover; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-mark {
  width: 72px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand strong { display: block; font-family: Marcellus, serif; font-size: 21px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.nav a {
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 4px;
  color: #4d4037;
  font-size: 14px;
}
.nav a.active, .nav a:hover { background: var(--sand); color: var(--terracotta); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}
.mobile-call-link { display: none; }
.call-link {
  padding: 11px 15px;
  background: var(--indigo);
  color: white;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(32, 24, 18, .94), rgba(90, 43, 31, .9) 48%, rgba(36, 59, 85, .86)),
    radial-gradient(circle at 18% 24%, rgba(217, 144, 47, .35), transparent 26%),
    var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 185, 130, .42);
  border-radius: 8px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .26;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(216,185,130,.18) 18px 19px),
    radial-gradient(circle at 78% 22%, rgba(217,144,47,.44), transparent 18%);
}
.home-hero {
  min-height: 76vh;
  background: var(--ink);
}
.home-hero::after {
  z-index: 0;
  opacity: .34;
  background:
    linear-gradient(180deg, rgba(32,24,18,.1), rgba(32,24,18,.34)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(216,185,130,.14) 20px 21px);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 5.8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-inner {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding: 58px 0;
  position: relative;
  z-index: 1;
}
.hero p, .eyebrow {
  margin: 0 0 12px;
  color: var(--marigold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  margin: 0;
  font-family: Marcellus, serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  font-weight: 400;
}
.hero span {
  display: block;
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-highlights span {
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(32, 24, 18, .42);
  color: #fff7e7;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-controls {
  position: absolute;
  left: clamp(18px, 7vw, 90px);
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(32,24,18,.48);
  color: white;
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(10px);
}
.hero-dots { display: flex; gap: 9px; align-items: center; }
.hero-dots button {
  width: 11px;
  height: 11px;
  min-height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.18);
}
.hero-dots button.active {
  width: 30px;
  border-radius: 999px;
  background: var(--marigold);
  border-color: var(--marigold);
}
.button, button {
  border: 0;
  border-radius: 4px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.button.primary, button { background: var(--marigold); color: #1d140d; }
.button.ghost { border: 1px solid rgba(255,255,255,.6); color: white; }
.notice {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 14px 18px;
  background: #eaf3eb;
  color: #214d2c;
  border-left: 4px solid #4d8a5a;
}

.band {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
  max-width: 1240px;
  margin: 0 auto;
}
.warm {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(216,185,130,.24), rgba(165,79,52,.10)),
    var(--sand);
}
.warm > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.intro {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.intro-content {
  display: grid;
  gap: 32px;
}
.welcome-intro {
  align-items: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  gap: clamp(24px, 4vw, 52px);
  margin-top: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(204, 143, 63, .13), transparent 26%),
    linear-gradient(135deg, #fffaf0, #fffdf8 58%, #f6ecd9);
  border: 1px solid rgba(151, 77, 42, .16);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(61, 39, 28, .08);
}
.welcome-intro::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(151, 77, 42, .12);
  background:
    linear-gradient(90deg, rgba(143, 47, 32, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 47, 32, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 8px;
  z-index: -1;
}
.welcome-intro > div:first-child {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(151, 77, 42, .16);
  box-shadow: 0 18px 42px rgba(61, 39, 28, .08);
}
.welcome-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.welcome-tagline {
  margin: 18px 0 0;
  max-width: 330px;
  font-size: 17px;
  color: #6a4b38;
}
.welcome-story-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,232,.88)),
    repeating-linear-gradient(45deg, rgba(151,77,42,.05) 0 1px, transparent 1px 13px);
  border: 1px solid rgba(151, 77, 42, .2);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(61, 39, 28, .11);
  animation: welcomeRise .75s ease both;
}
.welcome-story-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #8f2f20;
  color: #f8d37a;
  font-family: Marcellus, serif;
  font-size: 24px;
  box-shadow: inset 0 0 0 3px rgba(248, 211, 122, .28);
}
.welcome-story-card .body-copy {
  display: grid;
  gap: 12px;
}
.welcome-story-card p {
  margin: 0;
}
.welcome-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.welcome-highlight-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 8px;
  background: #fffaf0;
  border: 1px solid rgba(151, 77, 42, .18);
  box-shadow: 0 16px 34px rgba(61, 39, 28, .08);
  animation: welcomeRise .75s ease both;
  animation-delay: var(--delay);
}
.welcome-highlight-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #8f2f20;
  background:
    linear-gradient(135deg, rgba(248, 211, 122, .54), rgba(176, 75, 42, .12));
  border: 1px solid rgba(151, 77, 42, .18);
}
.welcome-highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.welcome-highlight-card h3 {
  margin: 0 0 6px;
  font-family: Marcellus, serif;
  font-size: 19px;
  color: #3b2418;
}
.welcome-highlight-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.welcome-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  align-items: end;
  padding-top: 6px;
}
.welcome-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 18px 42px rgba(32, 24, 18, .16);
  border: 1px solid rgba(255,255,255,.74);
  animation: welcomeRise .8s ease both, welcomeFloat 5.8s ease-in-out infinite;
}
.welcome-photo img {
  aspect-ratio: 1 / 1;
  height: 100%;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .7s ease;
}
.welcome-photo figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff7e7;
  background: rgba(43, 25, 17, .72);
  font-size: 13px;
  font-weight: 700;
}
.welcome-photo:hover img {
  transform: scale(1.08);
}
.welcome-collage-modern {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  align-items: stretch;
}
.welcome-collage-modern .welcome-photo {
  min-height: 0;
  transform: none;
}
.welcome-collage-modern .photo-a {
  grid-row: auto;
}
.welcome-collage-modern .welcome-photo img {
  aspect-ratio: auto;
  width: 100%;
  object-fit: cover;
}
.photo-a { transform: translateY(18px); animation-delay: .05s, .9s; }
.photo-b { transform: translateY(-8px); animation-delay: .16s, 1.2s; }
.photo-c { transform: translateY(28px); animation-delay: .27s, 1.5s; }
.photo-d { transform: translateY(4px); animation-delay: .38s, 1.8s; }
@keyframes welcomeRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.96);
  }
  to {
    opacity: 1;
  }
}
@keyframes welcomeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
h2 {
  margin: 0;
  font-family: Marcellus, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 400;
}
h3 { margin: 0 0 10px; font-size: 21px; }
p { color: var(--muted); line-height: 1.7; }
.body-copy { color: #4d4037; line-height: 1.85; font-size: 17px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.grid { display: grid; gap: 22px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.about-story {
  position: relative;
  max-width: 1240px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}
.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/about-hotel-siana-sojourn.png') center / cover no-repeat;
  filter: blur(14px);
  transform: scale(1.08);
  opacity: .28;
}
.about-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,253,248,.92), rgba(246,239,227,.94)),
    rgba(255, 253, 248, .78);
}
.about-lead {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  margin-bottom: 32px;
}
.about-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--marigold);
  background: var(--sand);
  color: #4d4037;
  font-size: 18px;
}
.about-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.about-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .22);
  box-shadow: 0 22px 58px rgba(32, 24, 18, .13);
  animation: aboutRise .8s ease both;
}
.about-image.main img {
  aspect-ratio: 16 / 9;
}
.about-image.main {
  width: min(980px, 100%);
  justify-self: center;
}
.about-image.accent {
  width: min(280px, 42%);
  float: right;
  margin: 4px 0 18px 24px;
  animation-delay: .18s;
}
.about-image.accent img {
  aspect-ratio: 1 / 1;
}
.about-image img {
  height: 100%;
}
.about-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 4px;
  background: rgba(32, 24, 18, .74);
  color: white;
  font-weight: 800;
}
.about-body {
  width: min(980px, 100%);
  justify-self: center;
  display: grid;
  gap: 22px;
}
.about-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.96), rgba(246,239,227,.9)),
    var(--sand);
  box-shadow: 0 18px 44px rgba(32, 24, 18, .08);
  animation: aboutRise .8s ease .1s both;
}
.about-copy p {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #4d4037;
  font-size: 16px;
  line-height: 1.85;
}
.about-copy p:first-child::first-letter {
  float: left;
  margin: 6px 9px 0 0;
  color: var(--terracotta);
  font-family: Marcellus, serif;
  font-size: 58px;
  line-height: .78;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background: rgba(165, 79, 52, .2);
  animation: aboutRise .8s ease .28s both;
}
.about-impact article {
  padding: 22px;
  background: #fffdf8;
}
.about-impact span {
  display: block;
  color: var(--terracotta);
  font-family: Marcellus, serif;
  font-size: 38px;
  line-height: 1;
}
.about-impact p {
  margin: 10px 0 0;
  color: #4d4037;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes aboutRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.amenities-page {
  max-width: 1240px;
}
.amenities-lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 30px;
}
.amenities-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--terracotta);
  background: var(--sand);
  color: #4d4037;
  font-size: 18px;
}
.amenities-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
  margin-bottom: 28px;
}
.amenities-showcase figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .24);
  box-shadow: 0 18px 44px rgba(32, 24, 18, .1);
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
}
.amenities-showcase figure.large {
  grid-column: span 2;
  grid-row: span 2;
}
.amenities-showcase img {
  height: 100%;
  transition: transform .7s ease;
}
.amenities-showcase figure:hover img {
  transform: scale(1.07);
}
.amenities-showcase figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(32, 24, 18, .72);
  color: white;
  font-weight: 800;
  font-size: 13px;
}
.amenities-highlight {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.96), rgba(246,239,227,.9)),
    var(--sand);
}
.amenities-highlight span {
  color: var(--terracotta);
  font-family: Marcellus, serif;
  font-size: 30px;
  line-height: 1;
}
.amenities-highlight p {
  margin: 0;
  color: #4d4037;
  font-size: 16px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenity-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 88%, rgba(217,144,47,.13), transparent 28%),
    #fffdf8;
  box-shadow: 0 16px 38px rgba(32, 24, 18, .08);
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
  transition: transform .3s ease, box-shadow .3s ease;
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(32, 24, 18, .13);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--marigold);
  box-shadow: inset 0 0 0 2px rgba(217, 144, 47, .38);
}
.amenity-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-card h3 {
  margin: 0 0 8px;
  font-family: Marcellus, serif;
  font-size: 23px;
}
.amenity-card p {
  margin: 0;
  color: #4d4037;
  font-size: 15px;
  line-height: 1.65;
}
@keyframes amenityRise {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.activities-page {
  max-width: 1240px;
}
.activities-lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 28px;
}
.activities-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--marigold);
  background:
    linear-gradient(135deg, rgba(246,239,227,.95), rgba(255,253,248,.92));
  color: #4d4037;
  font-size: 18px;
}
.activity-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background: rgba(165, 79, 52, .22);
  box-shadow: 0 18px 44px rgba(32, 24, 18, .08);
}
.activity-highlights article {
  padding: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(217,144,47,.16), transparent 30%),
    #fffdf8;
}
.activity-highlights span {
  display: block;
  color: var(--terracotta);
  font-family: Marcellus, serif;
  font-size: 28px;
}
.activity-highlights p {
  margin: 10px 0 0;
  color: #4d4037;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.activity-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(165, 79, 52, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.98), rgba(246,239,227,.88)),
    var(--sand);
  box-shadow: 0 14px 34px rgba(32, 24, 18, .07);
  animation: activityRise .7s ease both;
  animation-delay: var(--delay);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.activity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 144, 47, .5);
  box-shadow: 0 22px 48px rgba(32, 24, 18, .12);
}
.activity-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--marigold);
  box-shadow: inset 0 0 0 2px rgba(217, 144, 47, .38);
}
.activity-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.activity-card h3 {
  margin: 2px 0 6px;
  font-family: Marcellus, serif;
  font-size: 23px;
  line-height: 1.15;
}
.activity-card p {
  grid-column: 2;
  margin: 0;
  color: #4d4037;
  font-size: 15px;
  line-height: 1.62;
}
.desert-excursion {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(380px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(217,144,47,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.97), rgba(246,239,227,.9));
  box-shadow: 0 24px 64px rgba(32, 24, 18, .12);
}
.desert-excursion.camel-trek {
  background:
    radial-gradient(circle at 86% 12%, rgba(217,144,47,.18), transparent 28%),
    linear-gradient(135deg, rgba(246,239,227,.95), rgba(255,253,248,.97));
}
.camel-trek .excursion-media {
  order: 2;
}
.camel-trek .excursion-copy {
  order: 1;
}
.camel-trek .excursion-copy h2::after {
  background: linear-gradient(90deg, var(--marigold), var(--terracotta));
}
.excursion-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .24);
  box-shadow: 0 20px 54px rgba(32, 24, 18, .16);
  animation: heritageImageIn .9s ease both;
}
.excursion-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 253, 248, .56);
  border-radius: 6px;
  pointer-events: none;
}
.excursion-media img {
  aspect-ratio: 1 / 1;
  height: 100%;
  transition: transform .8s ease;
}
.desert-excursion:hover .excursion-media img {
  transform: scale(1.05);
}
.excursion-copy {
  animation: heritageCopyIn .9s ease .12s both;
}
.excursion-copy h2 {
  position: relative;
  padding-bottom: 16px;
}
.excursion-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--marigold));
}
.excursion-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}
.excursion-highlights span {
  padding: 8px 10px;
  border: 1px solid rgba(165, 79, 52, .24);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}
.excursion-copy p {
  margin: 0 0 14px;
  color: #4d4037;
  font-size: 15.5px;
  line-height: 1.78;
}
.excursion-copy p:last-child {
  margin-bottom: 0;
}
@keyframes activityRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.around-page {
  max-width: 1240px;
}
.around-lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 28px;
}
.around-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--terracotta);
  background: var(--sand);
  color: #4d4037;
  font-size: 18px;
}
.around-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}
.around-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.97), rgba(246,239,227,.9)),
    var(--sand);
  box-shadow: 0 18px 44px rgba(32, 24, 18, .08);
  animation: aboutRise .8s ease both;
}
.around-copy p {
  margin: 0 0 16px;
  color: #4d4037;
  font-size: 16px;
  line-height: 1.82;
}
.around-copy p:last-child {
  margin-bottom: 0;
}
.around-note {
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(217,144,47,.25), transparent 30%),
    var(--ink);
  color: white;
  animation: aboutRise .8s ease .12s both;
}
.around-note span {
  color: var(--marigold);
  font-family: Marcellus, serif;
  font-size: 56px;
  line-height: 1;
}
.around-note p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
}
.around-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.around-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 88%, rgba(217,144,47,.12), transparent 28%),
    #fffdf8;
  box-shadow: 0 16px 38px rgba(32, 24, 18, .08);
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
  transition: transform .3s ease, box-shadow .3s ease;
}
.around-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(32, 24, 18, .13);
}
.around-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--marigold);
  box-shadow: inset 0 0 0 2px rgba(217, 144, 47, .38);
}
.around-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.around-card h3 {
  margin: 0 0 8px;
  font-family: Marcellus, serif;
  font-size: 24px;
}
.around-card p {
  margin: 0;
  color: #4d4037;
  font-size: 15px;
  line-height: 1.65;
}
.kolayat-feature {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: 30px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(217,144,47,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.97), rgba(246,239,227,.9));
  box-shadow: 0 22px 58px rgba(32, 24, 18, .11);
}
.karni-feature {
  background:
    radial-gradient(circle at 88% 14%, rgba(165,79,52,.16), transparent 28%),
    linear-gradient(135deg, rgba(246,239,227,.94), rgba(255,253,248,.98));
}
.karni-feature figure {
  order: 2;
}
.karni-feature .kolayat-copy {
  order: 1;
}
.wildlife-feature {
  background:
    radial-gradient(circle at 12% 14%, rgba(67,104,74,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(236,241,225,.9));
}
.wildlife-feature .kolayat-copy h2::after {
  background: linear-gradient(90deg, #43684a, var(--marigold));
}
.wildlife-feature .kolayat-highlights span {
  color: #43684a;
  border-color: rgba(67, 104, 74, .26);
}
.khichan-feature {
  background:
    radial-gradient(circle at 86% 16%, rgba(36,59,85,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(236,243,246,.9));
}
.khichan-feature figure {
  order: 2;
}
.khichan-feature .kolayat-copy {
  order: 1;
}
.khichan-feature .kolayat-copy h2::after {
  background: linear-gradient(90deg, var(--indigo), var(--marigold));
}
.khichan-feature .kolayat-highlights span {
  color: var(--indigo);
  border-color: rgba(36, 59, 85, .24);
}
.reach-page {
  max-width: 1240px;
}
.reach-lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 28px;
}
.reach-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--marigold);
  background: var(--sand);
  color: #4d4037;
  font-size: 18px;
}
.reach-map-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, .9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(217,144,47,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(246,239,227,.9));
  box-shadow: 0 22px 58px rgba(32, 24, 18, .1);
}
.map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .22);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}
.map-copy {
  display: grid;
  align-content: center;
}
.map-copy h3,
.distance-panel h3 {
  margin: 0 0 12px;
  font-family: Marcellus, serif;
  font-size: 30px;
}
.map-copy p {
  margin: 0 0 18px;
  color: #4d4037;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.route-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 38px rgba(32, 24, 18, .08);
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
}
.route-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--marigold);
}
.route-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route-card h3 {
  margin: 0 0 4px;
  font-family: Marcellus, serif;
  font-size: 24px;
}
.route-card strong {
  color: var(--terracotta);
}
.route-card p {
  margin: 9px 0 0;
  color: #4d4037;
  font-size: 15px;
}
.reach-note {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}
.reach-note span {
  color: var(--marigold);
  font-family: Marcellus, serif;
  font-size: 30px;
}
.reach-note p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.distance-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
}
.distance-panel {
  padding: 24px;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.98), rgba(246,239,227,.88)),
    var(--sand);
  box-shadow: 0 16px 38px rgba(32, 24, 18, .08);
}
.distance-list {
  display: grid;
  gap: 9px;
}
.distance-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(165, 79, 52, .16);
}
.distance-list div:last-child {
  border-bottom: 0;
}
.distance-list span {
  color: #4d4037;
}
.distance-list strong {
  color: var(--terracotta);
  white-space: nowrap;
}
.contact-page {
  max-width: 1240px;
}
.contact-lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 28px;
}
.contact-lead > p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--terracotta);
  background: var(--sand);
  color: #4d4037;
  font-size: 18px;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.contact-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(165, 79, 52, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(217,144,47,.14), transparent 30%),
    #fffdf8;
  box-shadow: 0 16px 38px rgba(32, 24, 18, .08);
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(32, 24, 18, .13);
}
.contact-icon,
.booking-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--marigold);
  box-shadow: inset 0 0 0 2px rgba(217, 144, 47, .38);
}
.contact-icon svg,
.booking-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card small {
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
}
.contact-card strong {
  color: #3a2b22;
  font-size: 18px;
  line-height: 1.45;
  word-break: break-word;
}
.booking-panel {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) 1.3fr;
  gap: 22px;
  align-items: start;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(165, 79, 52, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.97), rgba(246,239,227,.9)),
    var(--sand);
  box-shadow: 0 22px 58px rgba(32, 24, 18, .1);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.booking-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(165, 79, 52, .18);
  border-radius: 8px;
  background: #fffdf8;
  animation: amenityRise .75s ease both;
  animation-delay: var(--delay);
}
.booking-card h3 {
  margin: 0;
  font-family: Marcellus, serif;
  font-size: 24px;
}
.booking-card p {
  margin: 0;
  color: #4d4037;
  font-size: 15px;
  line-height: 1.6;
}
.kolayat-feature figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .24);
  box-shadow: 0 20px 52px rgba(32, 24, 18, .14);
  animation: heritageImageIn .9s ease both;
}
.kolayat-feature img {
  aspect-ratio: 4 / 3;
  height: 100%;
  transition: transform .7s ease;
}
.kolayat-feature:hover img {
  transform: scale(1.06);
}
.kolayat-feature figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(32, 24, 18, .72);
  color: white;
  font-weight: 800;
}
.kolayat-copy {
  animation: heritageCopyIn .9s ease .12s both;
}
.kolayat-copy h2 {
  position: relative;
  padding-bottom: 15px;
}
.kolayat-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--marigold));
}
.kolayat-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}
.kolayat-highlights span {
  padding: 8px 10px;
  border: 1px solid rgba(165, 79, 52, .24);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}
.kolayat-copy p {
  margin: 0 0 14px;
  color: #4d4037;
  font-size: 15.5px;
  line-height: 1.78;
}
.kolayat-copy p:last-child {
  margin-bottom: 0;
}
.comfort-band {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 15% 12%, rgba(217, 144, 47, .2), transparent 30%),
    linear-gradient(135deg, rgba(246, 239, 227, .96), rgba(216, 185, 130, .32));
}
.comfort-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(165, 79, 52, .16);
  border-radius: 8px;
  pointer-events: none;
}
.comfort-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(165, 79, 52, .28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(246, 239, 227, .96)),
    var(--sand);
  box-shadow: 0 24px 70px rgba(32, 24, 18, .14);
}
.comfort-inner .section-head {
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(165, 79, 52, .18);
}
.comfort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(165, 79, 52, .18);
  border-radius: 8px;
  background: rgba(165, 79, 52, .18);
}
.comfort-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-content: start;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 88%, rgba(217, 144, 47, .12), transparent 28%),
    #fffdf8;
  box-shadow: none;
  animation: comfortRise .8s ease both;
  animation-delay: var(--delay);
  transition: background .35s ease, transform .35s ease;
}
.comfort-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 144, 47, .2);
  border-radius: 50%;
}
.comfort-card:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 88% 88%, rgba(217, 144, 47, .18), transparent 28%),
    #fff8ea;
}
.comfort-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--marigold);
  background: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(217, 144, 47, .38);
}
.comfort-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comfort-card h3 {
  margin: 2px 0 8px;
  font-family: Marcellus, serif;
  font-size: 25px;
  line-height: 1.12;
}
.comfort-card p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
@keyframes comfortRise {
  from {
    opacity: 0;
    transform: translateY(28px) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(32, 24, 18, .08);
}
.card img { height: 230px; }
.card div { padding: 22px; }
.card small { color: var(--terracotta); font-weight: 800; line-height: 1.5; }
.heritage-band {
  position: relative;
  overflow: hidden;
}
.heritage-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(151, 47, 32, .12), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(212, 154, 67, .16), transparent 28%);
  pointer-events: none;
}
.heritage-head {
  position: relative;
  z-index: 1;
}
.heritage-head > p {
  max-width: 430px;
  margin: 0;
  color: #6a4b38;
}
.heritage-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 500px) 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(151, 77, 42, .2);
  border-radius: 10px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 28px 70px rgba(61, 39, 28, .1);
}
.heritage-media {
  display: grid;
  gap: 14px;
}
.heritage-feature figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(165, 79, 52, .24);
  box-shadow: 0 24px 64px rgba(32, 24, 18, .16);
  animation: heritageImageIn .9s ease both;
}
.heritage-main-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 253, 248, .62);
  border-radius: 6px;
  pointer-events: none;
}
.heritage-feature img {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
}
.heritage-main-photo figcaption,
.heritage-mini-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff7e7;
  background: rgba(43, 25, 17, .72);
  font-size: 13px;
  font-weight: 800;
}
.heritage-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.heritage-mini-gallery figure {
  min-height: 118px;
  box-shadow: 0 14px 34px rgba(32, 24, 18, .12);
}
.heritage-mini-gallery img {
  height: 100%;
  aspect-ratio: 1 / 1;
}
.heritage-copy {
  display: grid;
  gap: 16px;
  animation: heritageCopyIn .9s ease .12s both;
}
.heritage-intro-card {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(151, 77, 42, .18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,232,.86));
  box-shadow: 0 18px 42px rgba(61, 39, 28, .08);
}
.heritage-intro-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9a3d24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.heritage-copy p,
.heritage-intro-card p {
  color: #4d4037;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}
.heritage-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.heritage-highlight-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #fffaf0;
  border: 1px solid rgba(151, 77, 42, .18);
  box-shadow: 0 14px 34px rgba(61, 39, 28, .08);
  animation: heritageCopyIn .75s ease both;
  animation-delay: var(--delay);
}
.heritage-highlight-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #8f2f20;
  background: linear-gradient(135deg, rgba(248, 211, 122, .56), rgba(176, 75, 42, .12));
  border: 1px solid rgba(151, 77, 42, .18);
}
.heritage-highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.heritage-highlight-card h3 {
  margin: 0 0 6px;
  font-family: Marcellus, serif;
  font-size: 19px;
  color: #3b2418;
}
.heritage-highlight-card p {
  font-size: 14px;
  line-height: 1.62;
}
.heritage-note {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-left: 4px solid #b86d32;
  border-radius: 8px;
  background: rgba(255, 250, 240, .74);
}
@keyframes heritageImageIn {
  from { opacity: 0; transform: translateX(-28px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heritageCopyIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; min-height: 260px; border-radius: 8px; }
.gallery img { height: 100%; min-height: 260px; }
.gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(32,24,18,.72);
  color: white;
  padding: 9px 11px;
  border-radius: 4px;
  font-weight: 700;
}
.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.contact-list { display: grid; gap: 10px; margin-top: 22px; font-weight: 800; color: var(--terracotta); }
.enquiry-form {
  background: var(--sand);
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 34px);
  border-radius: 8px;
  display: grid;
  gap: 14px;
}
label { display: grid; gap: 7px; font-weight: 800; color: #3a2b22; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(32,24,18,.18);
  border-radius: 4px;
  padding: 13px 12px;
  font: inherit;
  background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: white;
}
footer p { color: rgba(255,255,255,.68); margin: 8px 0 0; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 82px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; color: var(--stone); }

@media (max-width: 960px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
  }
  .brand { min-width: 0; }
  .brand-mark {
    width: 58px;
    height: 42px;
  }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 11px; }
  .menu-toggle { display: inline-flex; flex-direction: column; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav {
    grid-column: 1 / -1;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 253, 248, .98);
    box-shadow: none;
    transition: max-height .28s ease, padding .28s ease, border-color .28s ease, box-shadow .28s ease;
  }
  .menu-open .nav {
    max-height: 520px;
    padding: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(32, 24, 18, .12);
  }
  .nav a {
    width: 100%;
    padding: 13px 12px;
    border-radius: 6px;
    white-space: normal;
    font-size: 15px;
  }
  .mobile-call-link {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: var(--indigo);
    color: white !important;
    font-weight: 800;
  }
  .call-link { display: none; }
  .intro, .split { grid-template-columns: 1fr; }
  .about-lead,
  .about-grid,
  .amenities-lead,
  .activities-lead,
  .around-lead,
  .around-story,
  .reach-lead,
  .contact-lead,
  .reach-map-card,
  .reach-note,
  .booking-panel {
    grid-template-columns: 1fr;
  }
  .about-body { width: 100%; }
  .about-image.accent {
    width: min(240px, 48%);
  }
  .about-impact { grid-template-columns: 1fr; }
  .amenities-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .amenities-showcase figure.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .amenities-highlight,
  .amenities-grid,
  .activity-highlights,
  .activities-grid,
  .around-grid,
  .kolayat-feature,
  .route-grid,
  .distance-layout,
  .contact-card-grid,
  .booking-grid,
  .desert-excursion {
    grid-template-columns: 1fr;
  }
  .welcome-collage { grid-template-columns: repeat(4, 1fr); }
  .welcome-collage-modern { grid-template-columns: repeat(2, 1fr); }
  .welcome-collage-modern .photo-a { grid-row: span 1; }
  .comfort-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .heritage-highlight-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .topbar { padding: 9px 12px; }
  .brand { gap: 9px; }
  .brand-mark {
    width: 50px;
    height: 36px;
  }
  .brand strong { font-size: 16px; }
  .brand small {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero { min-height: 310px; }
  .home-hero { min-height: 70vh; }
  .hero-inner {
    margin-left: 18px;
    padding: 48px 0;
  }
  .form-row, .gallery { grid-template-columns: 1fr; }
  .welcome-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .welcome-story-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .welcome-story-mark {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }
  .welcome-highlight-grid {
    grid-template-columns: 1fr;
  }
  .welcome-highlight-card {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }
  .welcome-highlight-icon {
    width: 48px;
    height: 48px;
  }
  .welcome-photo { transform: none; }
  .comfort-grid { grid-template-columns: 1fr; }
  .comfort-inner { padding: 18px; }
  .comfort-inner .section-head {
    display: block;
  }
  .comfort-card {
    min-height: auto;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .comfort-icon {
    width: 54px;
    height: 54px;
  }
  .comfort-card p { grid-column: 1 / -1; }
  .about-lead { gap: 16px; }
  .about-lead > p { font-size: 16px; }
  .about-copy { padding: 18px; }
  .about-copy p:first-child::first-letter {
    float: none;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
  }
  .about-image.accent {
    width: 100%;
    float: none;
    margin: 0 0 18px;
  }
  .amenities-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .amenities-showcase figure.large {
    grid-column: span 1;
  }
  .amenities-highlight { padding: 18px; }
  .amenity-card {
    grid-template-columns: 50px 1fr;
    min-height: auto;
    padding: 18px;
  }
  .amenity-icon {
    width: 50px;
    height: 50px;
  }
  .activity-card {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }
  .activity-icon {
    width: 50px;
    height: 50px;
  }
  .activity-card p { grid-column: 1 / -1; }
  .desert-excursion { padding: 16px; }
  .reach-map-card { padding: 14px; }
  .map-frame,
  .map-frame iframe { min-height: 280px; }
  .route-card {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }
  .route-icon {
    width: 50px;
    height: 50px;
  }
  .reach-note { padding: 18px; }
  .distance-panel { padding: 18px; }
  .distance-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .karni-feature figure,
  .karni-feature .kolayat-copy,
  .khichan-feature figure,
  .khichan-feature .kolayat-copy {
    order: initial;
  }
  .camel-trek .excursion-media,
  .camel-trek .excursion-copy {
    order: initial;
  }
  .heritage-feature { padding: 14px; }
  .heritage-head {
    display: block;
  }
  .heritage-head > p {
    margin-top: 12px;
  }
  .heritage-mini-gallery {
    grid-template-columns: 1fr;
  }
  .heritage-mini-gallery figure {
    min-height: 180px;
  }
  .heritage-highlight-card {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }
  .heritage-highlight-icon {
    width: 46px;
    height: 46px;
  }
  footer { flex-direction: column; }
}
