:root {
  --ink: #111111;
  --ink-soft: #29231f;
  --cream: #f7f0e6;
  --paper: #fffaf3;
  --gold: #c79a42;
  --gold-soft: #ead7aa;
  --burgundy: #6f1025;
  --rose: #b84c63;
  --muted: #71665d;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 74px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(17, 17, 17, 0.24);
  color: #fff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-header {
  background: rgba(17, 17, 17, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(234, 215, 170, 0.7);
}

.top-nav {
  position: fixed;
  inset: 80px 16px auto 16px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.top-nav a {
  padding: 12px 14px;
  border-radius: 999px;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-open .top-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-nav a:hover {
  color: var(--gold-soft);
}

.menu-toggle {
  position: relative;
  z-index: 25;
  display: inline-grid;
  gap: 5px;
  place-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  display: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 805px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video,
.room-image,
.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-image,
.gallery-item {
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 154px 0 84px;
}

.hero-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(234, 215, 170, 0.72);
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 12vw, 7.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1.55rem, 4vw, 2.85rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  justify-content: center;
}

.hero-room-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  margin-top: 24px;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(6px);
}

.hero-room-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(234, 215, 170, 0.9);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
}

.btn-whatsapp {
  background: #1fa855;
  color: #fff;
}

.btn-call {
  background: var(--gold);
  color: #15110d;
}

.btn-waze {
  background: #28a7df;
  color: #fff;
}

.hero-actions .btn {
  min-width: 126px;
  background: rgba(17, 17, 17, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-actions .btn:hover,
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-top: 26px;
}

.trust-row span {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 14px;
  font-size: 0.98rem;
  font-weight: 700;
}

.trust-row span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.trust-row span:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.intro-strip {
  background: var(--burgundy);
  color: #fff;
}

.strip-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.strip-grid > div {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: var(--burgundy);
}

.strip-grid strong {
  font-size: 1.1rem;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 72px 0;
}

.page-main {
  padding-top: 80px;
}

.page-hero {
  padding: 86px 0 72px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.84)),
    url("assets/hero.jpg") center / cover;
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.align-start {
  margin-inline: 0;
  text-align: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-dark .section-heading p:not(.eyebrow),
.benefits-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.rooms-grid {
  display: grid;
  gap: 18px;
}

.room-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.room-image {
  min-height: 230px;
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-1.jpg"),
    linear-gradient(135deg, #1d1816, #6f1025 58%, #c79a42);
  position: relative;
}

.room-image::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(17, 17, 17, 0.72);
  opacity: 0;
  pointer-events: none;
}

.room-2,
.gallery-2 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-2.jpg"),
    linear-gradient(135deg, #2c0b14, #b84c63 48%, #f7f0e6);
}

.room-3,
.gallery-3 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-3.jpg"),
    linear-gradient(135deg, #111111, #4b392a 52%, #c79a42);
}

.room-4,
.gallery-4 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-4.jpg"),
    linear-gradient(135deg, #f7f0e6, #9f6b73 46%, #111111);
}

.room-5,
.gallery-5 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-5.jpg"),
    linear-gradient(135deg, #332721, #6f1025 50%, #ead7aa);
}

.room-6,
.gallery-6 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-1.jpg"),
    linear-gradient(135deg, #111111, #715b4d 45%, #fffaf3);
}

.room-7 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/room-4.jpg"),
    linear-gradient(135deg, #6f1025, #1a1113 48%, #c79a42);
}

.room-body {
  padding: 20px;
}

.room-body h3,
.benefits-grid h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.room-body p,
.benefits-grid p {
  margin: 0;
}

.room-body ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.room-body li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  background: var(--gold);
  vertical-align: middle;
}

.room-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
}

.split {
  display: grid;
  gap: 28px;
}

.amenities-grid {
  display: grid;
  gap: 10px;
}

.amenities-grid span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.amenity-cards {
  display: grid;
  gap: 14px;
}

.amenity-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px 20px 20px 18px;
  text-align: start;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(199, 154, 66, 0.14), transparent 38%),
    #fff;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-right: 4px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
}

.amenity-card strong {
  font-size: 1.18rem;
}

.amenity-card span {
  color: var(--muted);
}

.benefits-section {
  background:
    linear-gradient(rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.94)),
    linear-gradient(135deg, #111111, #6f1025);
}

.benefits-grid {
  display: grid;
  gap: 14px;
}

.benefits-grid > div {
  padding: 20px;
  border: 1px solid rgba(234, 215, 170, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.benefits-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(234, 215, 170, 0.22);
}

.benefits-list article {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(234, 215, 170, 0.22);
}

.benefits-list h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
}

.benefits-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-1.jpg"),
    linear-gradient(135deg, #111111, #6f1025 52%, #c79a42);
}

.gallery-2 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-2.jpg"),
    linear-gradient(135deg, #2c0b14, #b84c63 48%, #f7f0e6);
}

.gallery-3 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-3.jpg"),
    linear-gradient(135deg, #111111, #4b392a 52%, #c79a42);
}

.gallery-4 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-4.jpg"),
    linear-gradient(135deg, #f7f0e6, #9f6b73 46%, #111111);
}

.gallery-5 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-5.jpg"),
    linear-gradient(135deg, #332721, #6f1025 50%, #ead7aa);
}

.gallery-6 {
  background-image:
    linear-gradient(160deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.04)),
    url("assets/gallery-1.jpg"),
    linear-gradient(135deg, #111111, #715b4d 45%, #fffaf3);
}

.video-section {
  margin-top: 34px;
}

.video-section h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.video-grid {
  display: grid;
  gap: 14px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #111;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.1);
}

.faq-wrap {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

details p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-section {
  background: var(--burgundy);
  color: #fff;
}

.contact-card {
  display: grid;
  gap: 24px;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card h2 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(234, 215, 170, 0.72);
  text-underline-offset: 6px;
}

.contact-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details a,
.contact-details span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.contact-actions-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  padding: 22px 0 92px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.sticky-actions {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -12px 30px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}

.sticky-actions a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 58px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.sticky-call {
  background: var(--gold);
  color: #15110d !important;
}

.sticky-whatsapp {
  background: #1fa855;
}

.sticky-waze {
  background: #28a7df;
}

@media (min-width: 640px) {
  .rooms-grid,
  .benefits-grid,
  .gallery-grid,
  .amenities-grid,
  .amenity-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 639px) {
  .site-header {
    padding-block: 10px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
  }

  h1 {
    font-size: clamp(3.8rem, 22vw, 5.4rem);
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .hero-actions .btn {
    min-width: 132px;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .nav-cta {
    display: flex;
  }

  .top-nav {
    inset-inline: auto max(92px, calc((100vw - 1120px) / 2 + 72px));
    width: min(260px, calc(100vw - 32px));
  }

  .hero {
    min-height: 760px;
  }

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

  .split,
  .faq-wrap,
  .contact-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }

  .amenity-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    grid-column: span 2;
    min-height: 300px;
  }

  .sticky-actions {
    display: none;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
