:root {
  --ink: #18211c;
  --muted: #647168;
  --paper: #fbf8f0;
  --mist: #edf3ec;
  --pine: #163b2a;
  --moss: #78905d;
  --fern: #2d6f45;
  --clay: #a65738;
  --honey: #c99037;
  --sky: #d9e8ee;
  --rose: #f0d8c5;
  --gold-soft: #f5e6bd;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(24, 33, 28, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 144, 55, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(45, 111, 69, 0.1), transparent 26rem),
    var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 48%, transparent 54% 100%);
  background-size: 220% 220%;
  opacity: 0.22;
  animation: softSheen 16s ease-in-out infinite;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  background: rgba(251, 248, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(13, 28, 20, 0.16);
  backdrop-filter: blur(16px);
  animation: headerDrop 680ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(24, 33, 28, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(22, 59, 42, 0.1);
}

.site-header .nav-cta {
  color: var(--white);
  background: var(--pine);
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 126px clamp(20px, 5vw, 76px) 44px;
  color: var(--white);
  background: var(--pine);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(7, 15, 11, 0.74), transparent);
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 15, 11, 0.82), rgba(14, 32, 22, 0.38) 48%, rgba(9, 20, 15, 0.18)),
    linear-gradient(0deg, rgba(9, 20, 15, 0.7), rgba(9, 20, 15, 0.04) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: contentRise 900ms ease 160ms both;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  border: 3px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  max-width: 860px;
  font-size: clamp(4rem, 12.5vw, 10.8rem);
  text-transform: lowercase;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-actions,
.band-actions,
.naggar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #b75d3b, #873c2a);
  border-color: rgba(255, 255, 255, 0.1);
}

.button.whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #2e8b54, #195c39);
  border-color: rgba(255, 255, 255, 0.1);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.button.dark {
  color: var(--pine);
  border-color: rgba(22, 59, 42, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 56px;
  z-index: 3;
  width: min(320px, 28vw);
  padding: 20px;
  background: rgba(251, 248, 240, 0.94);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: cardFloatIn 900ms ease 420ms both, gentleFloat 6s ease-in-out 1.4s infinite;
}

.hero-card span,
.room-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 33, 28, 0.12);
}

.hero-card dt {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.search-strip {
  overflow: hidden;
  display: flex;
  gap: 10px;
  padding: 16px clamp(20px, 5vw, 76px);
  color: var(--pine);
  background: linear-gradient(90deg, var(--gold-soft), rgba(237, 243, 236, 0.95));
}

.search-strip span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(22, 59, 42, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 850;
  animation: keywordGlide 28s linear infinite;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: var(--paper);
}

.intro h2,
.section-heading h2,
.booking-band h2,
.location h2 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.intro > p,
.section-heading p,
.booking-band p,
.location p,
.experience-copy p,
.nearby-grid p,
.sales-copy p,
.faq-grid p,
.naggar-copy p,
.audience-grid p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.sales-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 31, 24, 0.96), rgba(22, 59, 42, 0.92)),
    url("assets/optimized/room-duplex-kitchen-900.webp") center / cover;
}

.sales-copy {
  align-self: center;
}

.sales-copy h2,
.naggar-copy h2,
.faq .section-heading h2 {
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
}

.sales-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sales-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.sales-grid article:hover,
.nearby-grid article:hover,
.amenity-groups article:hover,
.faq-grid article:hover,
.naggar-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 144, 55, 0.42);
}

.sales-grid span {
  color: var(--honey);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.sales-grid h3 {
  margin: 16px 0 12px;
  font-size: 2.1rem;
}

.sales-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.local-seo {
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 144, 55, 0.2), transparent 24rem),
    linear-gradient(180deg, rgba(251, 248, 240, 1), rgba(240, 216, 197, 0.32));
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seo-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: 0 18px 60px rgba(24, 33, 28, 0.09);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.seo-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 144, 55, 0.42);
  box-shadow: 0 26px 78px rgba(24, 33, 28, 0.14);
}

.seo-grid h3 {
  margin-bottom: 14px;
  font-size: 2.1rem;
}

.seo-grid p {
  margin: 0;
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 0), rgba(240, 216, 197, 0.28)),
    var(--paper);
}

.experience-media {
  position: relative;
  min-height: 620px;
}

.experience-media img {
  width: 82%;
  height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-media::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 42%;
  height: 44%;
  border: 1px solid rgba(22, 59, 42, 0.18);
  background: repeating-linear-gradient(
    135deg,
    rgba(22, 59, 42, 0.08) 0,
    rgba(22, 59, 42, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
  border-radius: var(--radius);
}

.experience-note {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(310px, 58%);
  padding: 24px;
  color: var(--white);
  background: var(--pine);
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(24, 33, 28, 0.22);
}

.experience-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--honey);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.experience-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--fern);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(135deg, rgba(22, 59, 42, 1), rgba(30, 76, 51, 1));
  color: var(--white);
}

.feature-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 108px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip svg {
  color: var(--honey);
}

.audiences {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(237, 243, 236, 0.86)),
    var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.audience-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.86)),
    url("assets/optimized/gallery-bright-900.webp") center / cover;
  box-shadow: 0 18px 58px rgba(24, 33, 28, 0.12);
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.audience-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.audience-grid article:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 82px rgba(24, 33, 28, 0.2);
}

.audience-grid article:hover::before {
  transform: translateX(120%);
}

.audience-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.84)),
    url("assets/optimized/gallery-bed-900.webp") center / cover;
}

.audience-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.84)),
    url("assets/optimized/gallery-interior-900.webp") center / cover;
}

.audience-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.84)),
    url("assets/optimized/room-family-900.webp") center / cover;
}

.audience-grid article:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.84)),
    url("assets/optimized/valley-1400.webp") center / cover;
}

.audience-grid article:nth-child(6) {
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0.02), rgba(15, 31, 24, 0.84)),
    url("assets/optimized/room-duplex-kitchen-900.webp") center / cover;
}

.audience-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--gold-soft);
}

.audience-grid h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.rooms {
  background:
    linear-gradient(180deg, rgba(237, 243, 236, 0.86), rgba(251, 248, 240, 0.88)),
    var(--mist);
}

.amenities {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(201, 144, 55, 0.18), transparent 28rem),
    linear-gradient(135deg, #101f18, #183c2c 58%, #263a31);
}

.amenities .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.amenity-groups article {
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.amenity-groups svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--honey);
}

.amenity-groups h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.amenity-groups ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-groups li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.amenity-groups li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(24, 33, 28, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(24, 33, 28, 0.14);
}

.room-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.room-card div {
  padding: 22px;
}

.room-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.room-card p {
  margin: 0;
  color: var(--muted);
}

.room-card.highlight {
  color: var(--white);
  background:
    linear-gradient(rgba(22, 59, 42, 0.84), rgba(22, 59, 42, 0.9)),
    url("assets/optimized/attic-bg-900.webp") center / cover;
}

.room-card.highlight span,
.room-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.room-card.highlight a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
}

.gallery {
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 1), rgba(255, 255, 255, 0.82)),
    var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 21vw, 340px);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(24, 33, 28, 0.09);
  transition: transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 24px 72px rgba(24, 33, 28, 0.16);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.nearby {
  background:
    linear-gradient(rgba(15, 31, 24, 0.86), rgba(15, 31, 24, 0.9)),
    url("assets/optimized/hero-1600.webp") center / cover;
  color: var(--white);
}

.nearby .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nearby-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.nearby-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--honey);
}

.nearby-grid h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.nearby-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.naggar {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 144, 55, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(251, 248, 240, 1), rgba(237, 243, 236, 0.95));
}

.naggar-copy h2 {
  margin-bottom: 22px;
}

.naggar-list {
  display: grid;
  gap: 14px;
}

.naggar-list article {
  min-height: 168px;
  padding: 26px;
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(24, 33, 28, 0.08);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.naggar-list article:nth-child(2) {
  margin-left: clamp(0px, 4vw, 54px);
}

.naggar-list article:nth-child(3) {
  margin-left: clamp(0px, 8vw, 108px);
}

.naggar-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.naggar-list h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(100deg, rgba(217, 232, 238, 0.96), rgba(240, 216, 197, 0.9)),
    var(--sky);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faq-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 243, 236, 0.72));
  box-shadow: 0 14px 44px rgba(24, 33, 28, 0.07);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.faq-grid h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.booking-band h2 {
  margin-bottom: 12px;
}

.booking-band .band-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(237, 243, 236, 0.66));
}

.location h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--clay);
  font-weight: 900;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, #0f1f18, #173729);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.footer address {
  max-width: 720px;
  font-style: normal;
  text-align: right;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.9);
  box-shadow: 0 18px 52px rgba(15, 31, 24, 0.18);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pine);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-cta a:nth-child(2) {
  background: var(--fern);
}

.floating-cta a:nth-child(3) {
  color: var(--pine);
  background: var(--gold-soft);
}

.floating-cta a:hover,
.floating-cta a:focus-visible {
  transform: translateY(-2px);
}

.floating-cta svg {
  width: 17px;
  height: 17px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes softSheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes keywordGlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-80px);
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 34px;
  }

  .intro,
  .section-heading,
  .location,
  .experience,
  .sales-panel,
  .naggar {
    grid-template-columns: 1fr;
  }

  .experience-media {
    min-height: 520px;
  }

  .experience-media img {
    width: 88%;
    height: 480px;
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .sales-grid,
  .seo-grid,
  .faq-grid,
  .amenity-groups {
    grid-template-columns: 1fr;
  }

  .sales-grid article,
  .seo-grid article,
  .faq-grid article,
  .amenity-groups article {
    min-height: auto;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-band .band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px 10px auto;
    align-items: flex-start;
    padding: 8px;
  }

  .brand span {
    display: none;
  }

  .site-header nav {
    overflow-x: auto;
    max-width: calc(100vw - 76px);
    padding-bottom: 2px;
  }

  .site-header nav a {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .hero {
    min-height: 84svh;
    padding: 96px 18px 28px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 20, 15, 0.82), rgba(9, 20, 15, 0.2) 68%),
      linear-gradient(90deg, rgba(9, 20, 15, 0.68), rgba(9, 20, 15, 0.18));
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-pills {
    display: none;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-card {
    display: none;
  }

  .hero-actions,
  .band-actions,
  .naggar-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .search-strip {
    padding: 12px 18px;
  }

  .section {
    padding: 58px 18px;
  }

  .experience-media {
    min-height: auto;
  }

  .experience-media img {
    width: 100%;
    height: 420px;
  }

  .experience-media::before {
    display: none;
  }

  .experience-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -72px auto 0;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip div {
    min-height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-card {
    min-height: auto;
  }

  .room-card img {
    aspect-ratio: 3 / 4;
    max-height: 400px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article {
    min-height: 270px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid .tall {
    grid-row: span 1;
  }

  .gallery-grid .wide {
    grid-column: span 2;
  }

  .naggar-list article:nth-child(2),
  .naggar-list article:nth-child(3) {
    margin-left: 0;
  }

  .map-frame {
    min-height: 360px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer address {
    text-align: left;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
    transform: none;
  }

  .floating-cta a {
    flex: 1;
    justify-content: center;
    padding: 9px 10px;
  }
}

@media (max-width: 470px) {
  .hero-card strong {
    font-size: 1.45rem;
  }

  .experience-media img {
    height: 340px;
  }

  .experience-note {
    width: calc(100% - 18px);
    padding: 20px;
  }

  .experience-note strong {
    font-size: 1.65rem;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip div {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .floating-cta span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
