/* =========================================================
   OCEAN VIBES INN
   Version 2.1 — Step 1
   Foundation + Header + Hero + Story
   ========================================================= */
@font-face {
  font-family: "IranNastaliq";
  src: url("../fonts/IranNastaliq.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --ocean: #003976;
  --ocean-700: #002c5b;
  --ocean-600: #004b93;

  --signature: #2FA9B5;
  --signature-dark: #278f99;
  --signature-soft: #eaf7f8;

  --sky: #72c5ea;

  --sand: #f4efe7;
  --sand-soft: #faf8f4;

  --white: #ffffff;

  --ink: #16202a;
  --muted: #68717c;

  --line: rgba(22, 32, 42, 0.14);

  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(255, 255, 255, 0.82);

  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;

  --container: min(1180px, calc(100% - 40px));
  --section-space: clamp(84px, 10vw, 150px);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-soft: 0 18px 50px rgba(0, 26, 57, 0.10);
  --shadow-glass: 0 16px 40px rgba(0, 24, 52, 0.16);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-height: 92px;
}
/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--ocean);
  color: var(--white);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ocean);
  font-weight: 700;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Global Layout ---------- */
.site-shell {
  width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section-soft {
  background: var(--sand-soft);
}

.section-blue {
  background: var(--ocean);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .72);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 7.5rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.7vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

p {
  color: var(--muted);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}

.text-link:hover::after {
  width: 70px;
}

/* ---------- Buttons ---------- */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition:
    color .3s var(--ease),
    background-color .3s var(--ease),
    border-color .3s var(--ease),
    transform .3s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ocean);
  color: var(--white);
}

.button-primary:hover {
  background: var(--ocean-600);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--ocean);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  transition:
    background-color .35s var(--ease),
    box-shadow .35s var(--ease),
    backdrop-filter .35s var(--ease),
    height .35s var(--ease);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
  max-height: 86px;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: width .3s var(--ease);
}

.primary-navigation {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
}

.primary-navigation a {
  position: relative;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.primary-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .3s var(--ease);
}

.header-cta:hover {
  background: var(--white);
  color: var(--ocean);
}

.menu-toggle {
  display: none;
}

.mobile-menu-actions,
.menu-backdrop {
  display: none;
}

/* Scrolled header state */
.site-header.is-scrolled {
  height: 76px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 30px rgba(0, 29, 65, .08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand img {
  width: 165px;
  
}

.site-header.is-scrolled .primary-navigation a {
  color: var(--ink);
}

.site-header.is-scrolled .header-cta {
  border-color: var(--ocean);
  background: var(--ocean);
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

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

.hero-media {
  z-index: -2;
  background: var(--ocean-700);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 20, 46, .24) 0%, rgba(0, 22, 50, .08) 38%, rgba(0, 20, 46, .76) 100%),
    linear-gradient(90deg, rgba(0, 20, 46, .42) 0%, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: clamp(110px, 12vh, 150px);
}

.hero-eyebrow {
  color: rgba(255, 255, 255, .75);
}

.hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  color: var(--white);
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .35);
}

.scroll-line::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 1.9s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(220%); }
}

/* ---------- Brand Strip ---------- */
.brand-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand-strip-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.brand-strip span {
  position: relative;
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-strip span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: var(--line);
  transform: translateY(-50%);
}

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
  margin-bottom: clamp(60px, 9vw, 120px);
}

.story-intro h2 {
  max-width: 760px;
}

.story-copy {
  padding-top: 28px;
}

.story-copy p {
  max-width: 620px;
}

.story-image {
  width: min(1450px, calc(100% - 40px));
  margin: 0 auto;
text-align: center;
}

.story-image img {
  width: 100%;
  height: min(72vw, 760px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.story-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Reveal Hooks ---------- */
.reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 5;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--white);
    transform-origin: center;
    transition: transform .3s var(--ease), opacity .2s ease, background-color .3s var(--ease);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    padding: 0;
    background: rgba(0, 20, 46, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }

  .primary-navigation {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: 14px;
    z-index: 4;
    width: min(380px, calc(100vw - 28px));
    max-height: calc(100svh - var(--header-height) - 28px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(0, 57, 118, .10);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0, 24, 52, .24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transform-origin: top right;
    transition: opacity .28s var(--ease), visibility .28s var(--ease), transform .28s var(--ease);
  }

  .primary-navigation > a {
    width: 100%;
    display: block;
    padding: 15px 10px;
    color: var(--ink) !important;
    border-bottom: 1px solid rgba(22, 32, 42, .10);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.01em;
  }

  .primary-navigation > a::after {
    display: none;
  }

  .primary-navigation > a:last-of-type {
    border-bottom: 0;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(22, 32, 42, .10);
  }

  .mobile-menu-actions a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-menu-book {
    background: var(--ocean);
    color: var(--white) !important;
  }

  .mobile-menu-whatsapp {
    border: 1px solid rgba(0, 57, 118, .24);
    background: var(--white);
    color: var(--ocean) !important;
  }

  .site-header.menu-open .primary-navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

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

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

  .header-cta {
    display: none;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(0, 57, 118, .28);
  }

  .site-header.is-scrolled .menu-toggle span {
    background: var(--ocean);
  }

  .site-header.menu-open .menu-toggle {
    border-color: rgba(0, 57, 118, .28);
    background: rgba(255, 255, 255, .96);
  }

  .site-header.menu-open .menu-toggle span {
    background: var(--ocean);
  }

  .site-header.menu-open .brand img {
    filter: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-copy {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --section-space: 74px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.5rem);
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 95%;
  }

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

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .brand-strip-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 8px;
  }

  .brand-strip span {
    padding: 14px 0;
  }

  .brand-strip span + span::before {
    left: 50%;
    top: 0;
    width: 38px;
    height: 1px;
    transform: translateX(-50%);
  }

  .story-image {
    width: calc(100% - 28px);
  }

  .story-image img {
    height: 62vh;
    min-height: 430px;
    border-radius: var(--radius-md);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.signature-caption {
  margin: 30px 0 0;
  color: var(--signature);
  font-family: "IranNastaliq", serif;
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  .signature-caption {
    margin-top: 22px;
    padding-inline: 12px;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.25;
  }
}

.story-image .signature-caption {
  width: 100%;
  margin: 85px auto 0;
  padding: 10px 20px 0;

  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 34px;

  color: #2FA9B5 !important;
  font-family: "IranNastaliq", serif !important;
  font-size: clamp(72px, 7vw, 118px) !important;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.story-image .signature-caption span {
  display: inline-block;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .story-image .signature-caption {
    margin-top: 36px;
    padding: 0 8px;
    gap: 16px;
    font-size: clamp(44px, 12vw, 68px) !important;
  }
}

.room-capacity{
    margin:10px 0 6px;
    color:var(--ocean);
    font-family:var(--font-display);
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.room-beds{
    margin:0 0 24px;
    color:var(--signature);
    font-family:var(--font-display);
    font-size:16px;
    font-weight:600;
    line-height:1.6;
}

/* =========================================================
   ROOMS SECTION — LUXURY EDITORIAL STYLE
   ========================================================= */

.rooms {
  background: var(--sand-soft);
}

.rooms .section-heading {
  margin-bottom: 80px;
}

.room-list {
  display: grid;
  gap: 110px;
}

/* ---------- Main Room Card ---------- */

.room-feature {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  min-height: 650px;

  padding: 34px;

  background: var(--white);
  border: 1px solid rgba(0, 57, 118, 0.08);
  border-radius: 34px;

  box-shadow:
    0 25px 70px rgba(0, 31, 66, 0.08),
    0 6px 20px rgba(0, 31, 66, 0.04);

  overflow: visible;

  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.room-feature:hover {
  transform: translateY(-7px);

  box-shadow:
    0 38px 95px rgba(0, 31, 66, 0.13),
    0 10px 28px rgba(0, 31, 66, 0.06);
}

/* ---------- Reverse Room Layout ---------- */

.room-feature-reverse {
  grid-template-columns: 57% 43%;
}

.room-feature-reverse .room-media {
  order: 2;
}

.room-feature-reverse .room-details {
  order: 1;
}

/* ---------- Luxury Image Frame ---------- */

.room-media {
  position: relative;
  min-height: 540px;

  padding: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 1),
      rgba(234, 247, 248, 0.72)
    );

  border: 1px solid rgba(47, 169, 181, 0.28);
  border-radius: 28px;

  box-shadow:
    0 24px 55px rgba(0, 42, 78, 0.14),
    inset 0 0 0 5px rgba(255, 255, 255, 0.75);

  overflow: hidden;

  transform: translateX(-18px);

  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.room-feature-reverse .room-media {
  transform: translateX(18px);
}

.room-feature:hover .room-media {
  transform: translateX(-18px) translateY(-4px);

  box-shadow:
    0 32px 75px rgba(0, 42, 78, 0.18),
    inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}

.room-feature-reverse:hover .room-media {
  transform: translateX(18px) translateY(-4px);
}

.room-media::before {
  content: "";

  position: absolute;
  inset: 6px;
  z-index: 2;

  border: 1px solid rgba(47, 169, 181, 0.18);
  border-radius: 22px;

  pointer-events: none;
}

.room-media img {
  width: 100%;
  height: 100%;
  min-height: 514px;

  object-fit: cover;
  object-position: center;

  border-radius: 20px;

  transition:
    transform 1s var(--ease),
    filter 0.6s var(--ease);
}

.room-feature:hover .room-media img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

/* ---------- Room Content ---------- */

.room-details {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(45px, 5vw, 75px)
    clamp(35px, 5vw, 72px);

  min-width: 0;
}

.room-feature:not(.room-feature-reverse) .room-details {
  padding-left: clamp(48px, 6vw, 88px);
}

.room-feature-reverse .room-details {
  padding-right: clamp(48px, 6vw, 88px);
}

.room-details .eyebrow {
  margin: 0 0 17px;

  color: var(--signature);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-details h3 {
  max-width: 620px;

  margin: 0 0 28px;

  color: var(--ink);

  font-size: clamp(38px, 3.8vw, 62px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

/* ---------- Capacity ---------- */

.room-capacity {
  margin: 0 0 9px;

  color: var(--ocean);

  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---------- Beds ---------- */

.room-beds {
  margin: 0 0 30px;

  color: var(--signature);

  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

/* ---------- Description ---------- */

.room-details > p:not(.eyebrow):not(.room-capacity):not(.room-beds) {
  max-width: 680px;

  margin: 0 0 32px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.85;
}

/* ---------- Amenities ---------- */

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;

  margin: 0 0 38px;
  padding: 28px 0;

  border-top: 1px solid rgba(22, 32, 42, 0.1);
  border-bottom: 1px solid rgba(22, 32, 42, 0.1);

  list-style: none;
}

.room-amenities li {
  position: relative;

  padding-left: 23px;

  color: var(--ink);

  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.room-amenities li::before {
  content: "";

  position: absolute;
  top: 0.58em;
  left: 0;

  width: 8px;
  height: 8px;

  background: var(--signature);
  border: 2px solid var(--signature-soft);
  border-radius: 50%;

  box-shadow: 0 0 0 1px rgba(47, 169, 181, 0.32);
}

/* ---------- Request Link ---------- */

.room-details .text-link {
  align-self: flex-start;

  margin-top: 0;

  color: var(--ocean);
}

.room-details .text-link::after {
  background: var(--signature);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .room-feature,
  .room-feature-reverse {
    grid-template-columns: 46% 54%;
    padding: 26px;
  }

  .room-media,
  .room-feature-reverse .room-media {
    min-height: 500px;
    transform: none;
  }

  .room-feature:hover .room-media,
  .room-feature-reverse:hover .room-media {
    transform: translateY(-4px);
  }

  .room-media img {
    min-height: 474px;
  }

  .room-details,
  .room-feature:not(.room-feature-reverse) .room-details,
  .room-feature-reverse .room-details {
    padding: 45px;
  }
}

/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 850px) {
  .room-list {
    gap: 65px;
  }

  .room-feature,
  .room-feature-reverse {
    grid-template-columns: 1fr;

    min-height: auto;

    padding: 20px;

    border-radius: 26px;
  }

  .room-feature-reverse .room-media,
  .room-feature-reverse .room-details {
    order: initial;
  }

  .room-media,
  .room-feature-reverse .room-media {
    min-height: 440px;

    transform: none;

    border-radius: 22px;
  }

  .room-feature:hover .room-media,
  .room-feature-reverse:hover .room-media {
    transform: translateY(-3px);
  }

  .room-media img {
    min-height: 414px;
    border-radius: 16px;
  }

  .room-details,
  .room-feature:not(.room-feature-reverse) .room-details,
  .room-feature-reverse .room-details {
    padding: 46px 28px 35px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .rooms .section-heading {
    margin-bottom: 50px;
  }

  .room-list {
    gap: 48px;
  }

  .room-feature,
  .room-feature-reverse {
    padding: 12px;

    border-radius: 22px;
  }

  .room-media,
  .room-feature-reverse .room-media {
    min-height: 345px;

    padding: 8px;

    border-radius: 18px;
  }

  .room-media::before {
    inset: 4px;
    border-radius: 14px;
  }

  .room-media img {
    min-height: 327px;
    border-radius: 12px;
  }

  .room-details,
  .room-feature:not(.room-feature-reverse) .room-details,
  .room-feature-reverse .room-details {
    padding: 35px 15px 27px;
  }

  .room-details h3 {
    margin-bottom: 23px;

    font-size: clamp(34px, 10vw, 46px);
  }

  .room-details > p:not(.eyebrow):not(.room-capacity):not(.room-beds) {
    font-size: 16px;
    line-height: 1.75;
  }

  .room-amenities {
    grid-template-columns: 1fr;
    gap: 11px;

    padding: 23px 0;
  }
}

.room-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 6;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 11px 17px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 169, 181, 0.28);
  border-radius: 999px;

  box-shadow: 0 14px 34px rgba(0, 35, 70, 0.12);
  backdrop-filter: blur(16px);
}

.room-badge svg {
  width: 17px;
  height: 17px;
  color: var(--signature);
  stroke-width: 2;
}

.room-badge span {
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.room-badge-signature {
  background: rgba(0, 57, 118, 0.94);
  border-color: rgba(47, 169, 181, 0.65);
}

.room-badge-signature span {
  color: var(--white);
}

.room-badge-signature svg {
  color: var(--signature);
}

@media (max-width: 600px) {
  .room-badge {
    top: 18px;
    left: 18px;
    padding: 9px 13px;
  }

  .room-badge span {
    font-size: 10px;
  }

  .room-badge svg {
    width: 15px;
    height: 15px;
  }
}

/* =========================================================
   EXPERIENCES — LUXURY EDITORIAL GRID
   ========================================================= */

.experiences {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.experiences::before {
  content: "EXPLORE";

  position: absolute;
  top: 80px;
  right: -30px;

  color: rgba(47, 169, 181, 0.055);

  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 240px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;

  pointer-events: none;
}

/* ---------- Heading ---------- */

.experiences-heading {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;

  margin-bottom: 80px;
}

.experiences-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.experiences-intro {
  padding-bottom: 10px;
}

.experiences-intro p {
  margin-bottom: 18px;

  font-size: 17px;
  line-height: 1.8;
}

.experiences-note {
  color: var(--ocean) !important;

  font-family: var(--font-display);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.07em;
}

/* ---------- Grid ---------- */

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 24px;
}

/* ---------- Card ---------- */

.experience-card {
  position: relative;

  min-height: 540px;

  border-radius: 28px;
  overflow: hidden;

  background: var(--ocean);
  box-shadow: 0 24px 65px rgba(0, 38, 76, 0.12);

  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.experience-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 36px 85px rgba(0, 38, 76, 0.18),
    0 10px 25px rgba(0, 38, 76, 0.08);
}



/* ---------- Link ---------- */

.experience-card-link {
  position: absolute;
  inset: 0;

  display: block;

  color: var(--white);
}

/* ---------- Image ---------- */

.experience-image {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 1.15s var(--ease),
    filter 0.7s var(--ease);
}

.experience-card:hover .experience-image img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.03);
}

/* ---------- Overlay ---------- */

.experience-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(0, 25, 55, 0.08) 0%,
      rgba(0, 25, 55, 0.16) 42%,
      rgba(0, 25, 55, 0.9) 100%
    );
}

/* ---------- Number ---------- */

.experience-number {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 3;

  color: rgba(255, 255, 255, 0.76);

  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* ---------- Content ---------- */

.experience-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;

  padding: 36px;
}

.experience-type{

    margin:0 0 14px;

    color:#ffffff;

    font-size:11px;
    font-weight:800;
    letter-spacing:.18em;
    opacity:.95;
    text-transform:uppercase;

    text-shadow:
        0 2px 8px rgba(0,0,0,.65);

}
.experience-content h3 {
  max-width: 90%;
  margin: 0 0 15px;

  color: var(--white);

  font-size: clamp(29px, 2.8vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.experience-content > p:not(.experience-type) {
  max-width: 470px;
  margin: 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Arrow ---------- */

.experience-arrow {
  position: absolute;
  right: 30px;
  bottom: 31px;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;

  color: var(--white);

  backdrop-filter: blur(10px);

  transition:
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.experience-arrow svg {
  width: 18px;
  height: 18px;
}

.experience-card:hover .experience-arrow {
  background: var(--signature);
  border-color: var(--signature);
  transform: rotate(8deg);
}

.experience-content h3,
.experience-content > p {
  padding-right: 58px;
}

/* ---------- Bottom CTA ---------- */

.experiences-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 60px;
  padding-top: 34px;

  border-top: 1px solid var(--line);
}

.experiences-footer p {
  max-width: 680px;
  margin: 0;

  font-size: 17px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .experiences-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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


  .experience-card,
  .experience-card-tall {
    min-height: 540px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .experiences::before {
    top: 50px;
    right: -10px;
    font-size: 100px;
  }

  .experiences-heading {
    margin-bottom: 48px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-card,
  .experience-card-tall{
    grid-column: auto;
    min-height: 480px;
    border-radius: 22px;
  }

  .experience-content {
    padding: 28px 24px;
  }

  .experience-content h3 {
    font-size: 32px;
  }

  .experience-content h3,
  .experience-content > p {
    padding-right: 48px;
  }

  .experience-arrow {
    right: 22px;
    bottom: 25px;

    width: 42px;
    height: 42px;
  }

  .experiences-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;

    margin-top: 42px;
  }
}

/* =========================================================
   WHY OCEAN VIBES
   ========================================================= */

.hospitality {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(47, 169, 181, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--ocean-700) 0%,
      var(--ocean) 58%,
      #004b72 100%
    );
}

.hospitality::before {
  content: "OCEAN VIBES";

  position: absolute;
  right: -30px;
  bottom: -25px;

  color: rgba(255, 255, 255, 0.035);

  font-family: var(--font-display);
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;

  pointer-events: none;
}

.hospitality-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

/* ---------- Left Content ---------- */

.hospitality-copy {
  max-width: 620px;
}

.hospitality-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
}

.hospitality-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.hospitality-copy .hospitality-lead {
  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.5;
}

.hospitality-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 24px;
  padding-bottom: 8px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.36);

  color: var(--white);

  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.hospitality-link svg {
  width: 17px;
  height: 17px;
  color: var(--signature);
}

.hospitality-link:hover {
  gap: 18px;
  color: var(--signature);
  border-color: var(--signature);
}

/* ---------- Feature Cards ---------- */

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

.hospitality-feature {
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 30px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;

  box-shadow: 0 18px 45px rgba(0, 20, 45, 0.18);
  backdrop-filter: blur(14px);

  transition:
    transform 0.4s var(--ease),
    background-color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.hospitality-feature:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(47, 169, 181, 0.55);
}

.hospitality-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 34px;

  border: 1px solid rgba(47, 169, 181, 0.48);
  border-radius: 50%;

  background: rgba(47, 169, 181, 0.1);
}

.hospitality-icon svg {
  width: 22px;
  height: 22px;

  color: var(--signature);
  stroke-width: 1.8;
}

.hospitality-feature h3 {
  margin: 0 0 12px;

  color: var(--white);

  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.hospitality-feature p {
  margin: 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {
  .hospitality-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hospitality-copy {
    max-width: 760px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .hospitality-features {
    grid-template-columns: 1fr;
  }

  .hospitality-feature {
    min-height: auto;
    padding: 26px;
  }

  .hospitality-icon {
    margin-bottom: 28px;
  }

  .hospitality::before {
    right: -10px;
    bottom: 10px;
    font-size: 90px;
  }
}

/* =========================================================
   CHEF MO
   ========================================================= */

.chefmo{

background:#fff;

}

.chefmo-grid{

display:grid;

grid-template-columns:1.05fr .95fr;

gap:90px;

align-items:center;

}

.chefmo-image{

overflow:hidden;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.chefmo-image img{

width:100%;

display:block;

aspect-ratio:4/5;

object-fit:cover;

transition:transform .8s var(--ease);

}

.chefmo-image:hover img{

transform:scale(1.05);

}

.chefmo-content{

max-width:620px;

}

.chefmo-lead{

margin:28px 0;

font-size:22px;

line-height:1.7;

color:var(--ocean);

font-family:var(--font-display);

}

.chefmo-content p:last-of-type{

margin-bottom:38px;

}

.chefmo-highlights{

display:flex;

flex-wrap:wrap;

gap:18px;

margin-bottom:45px;

}

.chefmo-highlights div{

display:flex;

align-items:center;

gap:10px;

padding:12px 18px;

border-radius:999px;

background:#F6FBFC;

}

.chefmo-highlights svg{

width:18px;

height:18px;

color:#2FA9B5;

}

.chefmo-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.button-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 32px;

    background:#2FA9B5;

    color:#fff;

    border:2px solid #2FA9B5;

    border-radius:999px;

    font-weight:700;

    transition:all .35s var(--ease);

}

.button-secondary:hover{

    background:#2799A4;

    border-color:#2799A4;

    transform:translateY(-2px);

}

/* =========================================================
   GALLERY — EDITORIAL MOSAIC
   ========================================================= */

.gallery {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(47, 169, 181, 0.08),
      transparent 27%
    ),
    #f7f3ec;
}

.gallery::before {
  content: "GALLERY";

  position: absolute;
  top: 70px;
  right: -25px;

  color: rgba(0, 57, 118, 0.035);

  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 230px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;

  pointer-events: none;
}

/* ---------- Heading ---------- */

.gallery-heading {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;

  margin-bottom: 76px;
}

.gallery-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.gallery-intro {
  padding-bottom: 8px;
}

.gallery-intro > p {
  margin: 0 0 18px;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.gallery-intro .gallery-note {
  margin-bottom: 0;

  color: var(--ocean);

  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Mosaic ---------- */

.gallery-mosaic {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 22px;
}

/* ---------- Individual Items ---------- */

.gallery-item {
  position: relative;

  width: 100%;
  height: 100%;

  padding: 0;

  overflow: hidden;

  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 26px;

  box-shadow:
    0 24px 60px rgba(0, 35, 70, 0.11),
    0 5px 18px rgba(0, 35, 70, 0.05);

  cursor: pointer;

  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-6px);

  box-shadow:
    0 34px 78px rgba(0, 35, 70, 0.16),
    0 9px 24px rgba(0, 35, 70, 0.07);
}

.gallery-item-featured {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-item-portrait {
  grid-column: span 5;
  grid-row: span 6;
}

.gallery-item-standard {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item-wide {
  grid-column: span 8;
  grid-row: span 3;
}

/* ---------- Images ---------- */

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 18px;

  transition:
    transform 0.9s var(--ease),
    filter 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.02);
}

/* ---------- Subtle Overlay ---------- */

.gallery-item::after {
  content: "";

  position: absolute;
  inset: 8px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(0, 31, 63, 0.18) 100%
    );

  opacity: 0;

  transition: opacity 0.35s var(--ease);

  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- Expand Icon ---------- */

.gallery-view {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  background: rgba(0, 35, 70, 0.34);
  color: var(--white);

  opacity: 0;
  transform: translateY(8px);

  backdrop-filter: blur(12px);

  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.gallery-view svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.gallery-item:hover .gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.gallery-view:hover {
  background: var(--signature);
}

/* ---------- Footer ---------- */

.gallery-footer {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 55px;
  padding-top: 32px;

  border-top: 1px solid rgba(0, 57, 118, 0.13);
}

.gallery-footer p {
  max-width: 680px;
  margin: 0;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   GALLERY — TABLET
   ========================================================= */

@media (max-width: 980px) {
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 360px;
  }

  .gallery-item-featured,
  .gallery-item-portrait,
  .gallery-item-standard,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
  }

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

/* =========================================================
   GALLERY — MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .gallery::before {
    top: 45px;
    right: -10px;
    font-size: 100px;
  }

  .gallery-heading {
    margin-bottom: 46px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
    gap: 18px;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-portrait,
  .gallery-item-standard,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;

    border-width: 6px;
    border-radius: 20px;
  }

  .gallery-item img,
  .gallery-item::after {
    border-radius: 14px;
  }

  .gallery-view {
    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    opacity: 1;
    transform: none;
  }

  .gallery-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;

    margin-top: 40px;
  }
}

/* =========================================================
   VERIFIED GUEST REVIEWS
   ========================================================= */

.guest-reviews {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(47, 169, 181, 0.10),
      transparent 30%
    ),
    var(--white);
}

.guest-reviews::before {
  content: "9.5";

  position: absolute;
  right: -35px;
  top: 20px;

  color: rgba(0, 57, 118, 0.035);

  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 440px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;

  pointer-events: none;
}

/* ---------- Heading ---------- */

.guest-reviews-heading {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;

  margin-bottom: 70px;
}

.guest-reviews-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

/* ---------- Main Booking Score ---------- */

.booking-score-card {
  display: flex;
  align-items: center;
  gap: 25px;

  padding: 28px;

  background: var(--ocean);
  border: 1px solid rgba(47, 169, 181, 0.35);
  border-radius: 26px;

  box-shadow:
    0 25px 65px rgba(0, 38, 76, 0.16),
    0 6px 20px rgba(0, 38, 76, 0.08);
}

.booking-score {
  flex: 0 0 auto;

  width: 112px;
  height: 112px;

  display: flex;
  align-items: baseline;
  justify-content: center;

  padding-top: 26px;

  background: var(--white);
  border-radius: 22px;

  color: var(--ocean);
}

.booking-score strong {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.booking-score span {
  margin-left: 3px;

  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-score-copy p {
  margin: 0 0 6px;

  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.booking-score-copy .booking-rating-label {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.booking-source {
  display: inline-block;

  margin-top: 8px;

  color: var(--signature);

  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ---------- Category Scores ---------- */

.review-category-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  margin-bottom: 70px;
}

.review-category {
  padding: 24px;

  background: var(--sand-soft);
  border: 1px solid rgba(0, 57, 118, 0.08);
  border-radius: 20px;
}

.review-category-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 16px;

  color: var(--ink);
}

.review-category-heading span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.review-category-heading strong {
  color: var(--ocean);

  font-family: var(--font-display);
  font-size: 17px;
}

.review-bar {
  height: 5px;

  overflow: hidden;

  background: rgba(0, 57, 118, 0.10);
  border-radius: 999px;
}

.review-bar span {
  width: var(--score);
  height: 100%;

  display: block;

  background:
    linear-gradient(
      90deg,
      var(--ocean),
      var(--signature)
    );

  border-radius: inherit;
}

/* ---------- Latest Reviews ---------- */

.latest-reviews {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.guest-review-card {
  min-height: 310px;

  display: flex;
  flex-direction: column;

  padding: 32px;

  background: var(--white);
  border: 1px solid rgba(0, 57, 118, 0.10);
  border-radius: 24px;

  box-shadow:
    0 20px 55px rgba(0, 35, 70, 0.08),
    0 5px 16px rgba(0, 35, 70, 0.04);

  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.guest-review-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 30px 75px rgba(0, 35, 70, 0.13),
    0 8px 22px rgba(0, 35, 70, 0.06);
}

.guest-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 38px;
}

.review-platform {
  color: var(--ocean);

  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-score-small {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: var(--ocean);
  border-radius: 12px;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 14px;
}

.guest-review-card blockquote {
  flex: 1;

  margin: 0 0 30px;

  color: var(--ink);

  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.review-meta {
  margin: 0;

  color: var(--muted);
  font-size: 13px;
}

/* ---------- Real Guest Review Details ---------- */

.review-title {
  margin: -18px 0 18px;

  color: var(--ocean);

  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.review-guest {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: auto;
  padding-top: 22px;

  border-top: 1px solid rgba(0, 57, 118, 0.10);
}

.review-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      var(--ocean),
      var(--signature)
    );

  border-radius: 50%;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.review-guest-name {
  margin: 0 0 3px;

  color: var(--ink);

  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.review-meta {
  margin: 0 0 2px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.review-date {
  margin: 0;

  color: rgba(104, 113, 124, 0.78);
  font-size: 11px;
  line-height: 1.45;
}


/* ---------- Reviews Footer ---------- */

.guest-reviews-footer {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 55px;
  padding-top: 34px;

  border-top: 1px solid var(--line);
}

.guest-reviews-footer p {
  max-width: 650px;
  margin: 0;

  font-size: 15px;
}

.guest-reviews-footer .button svg {
  width: 17px;
  height: 17px;
}

/* =========================================================
   REVIEWS — TABLET
   ========================================================= */

@media (max-width: 980px) {
  .guest-reviews-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .booking-score-card {
    max-width: 620px;
  }

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

  .latest-reviews {
    grid-template-columns: 1fr;
  }

  .guest-review-card {
    min-height: auto;
  }
}

/* =========================================================
   REVIEWS — MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .guest-reviews::before {
    top: 35px;
    right: -15px;
    font-size: 190px;
  }

  .guest-reviews-heading {
    margin-bottom: 48px;
  }

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

  .booking-score {
    width: 100px;
    height: 100px;
    padding-top: 23px;
  }

  .booking-score strong {
    font-size: 42px;
  }

  .review-category-grid {
    grid-template-columns: 1fr;
    gap: 13px;

    margin-bottom: 48px;
  }

  .guest-review-card {
    padding: 26px;
    border-radius: 20px;
  }

  .guest-reviews-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;

    margin-top: 42px;
  }
}

/* =========================================================
   FINAL BOOKING CTA
   ========================================================= */

.final-cta {
  position: relative;
  min-height: 680px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  background: var(--ocean-700);
}

/* ---------- Background Image ---------- */

.final-cta-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.final-cta-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

/* ---------- Overlay ---------- */

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(4, 19, 36, 0.90) 0%,
      rgba(4, 19, 36, 0.72) 38%,
      rgba(4, 19, 36, 0.36) 68%,
      rgba(4, 19, 36, 0.15) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 20, 45, 0.10) 0%,
      rgba(0, 20, 45, 0.32) 100%
    );
}

/* ---------- Layout ---------- */

.final-cta-content {
  position: relative;
  z-index: 2;

  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;

  padding-block: 110px;
}

/* ---------- Copy ---------- */

.final-cta-copy {
  max-width: 700px;
}

.final-cta-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;

  color: var(--white);

  font-size: clamp(48px, 5.8vw, 88px);
}

.final-cta-copy > p {
  max-width: 620px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 18px;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Buttons ---------- */

.button-light {
  background: var(--white);
  color: var(--ocean);
}

.button-light:hover {
  background: var(--signature);
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);

  backdrop-filter: blur(10px);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--ocean);
}

/* ---------- Rating Card ---------- */

.final-cta-rating {
  justify-self: end;

  width: min(100%, 390px);

  padding: 34px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;

  box-shadow: 0 24px 70px rgba(0, 15, 35, 0.28);
  backdrop-filter: blur(18px);
}

.final-rating-source {
  display: inline-block;

  margin-bottom: 28px;

  color: var(--signature);

  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-rating-score {
  display: flex;
  align-items: baseline;
  gap: 5px;

  margin-bottom: 10px;

  color: var(--white);
}

.final-rating-score strong {
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.final-rating-score span {
  color: rgba(255, 255, 255, 0.62);

  font-size: 16px;
  font-weight: 700;
}

.final-rating-label {
  margin-bottom: 8px;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.final-rating-count {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   TABLET
   ========================================================= */

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

  .final-cta-media img {
    object-position: 58% center;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 50px;

    padding-block: 90px;
  }

  .final-cta-rating {
    justify-self: start;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .final-cta-media img {
    object-position: 62% center;
  }

  .final-cta-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 19, 36, 0.58) 0%,
        rgba(4, 19, 36, 0.88) 62%,
        rgba(4, 19, 36, 0.96) 100%
      );
  }

  .final-cta-content {
    padding-block: 82px;
  }

  .final-cta-copy h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .final-cta-copy > p {
    font-size: 16px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-rating {
    width: 100%;
    padding: 28px;
  }

  .final-rating-score strong {
    font-size: 64px;
  }
}

/* =========================================================
   FINAL CTA — WIDTH FIX
   ========================================================= */

.final-cta {
  width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.final-cta-content {
  width: var(--container);
  max-width: 1180px;
  margin-inline: auto;

  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(36px, 5vw, 72px);

  padding-block: 90px;
}

.final-cta-copy {
  min-width: 0;
  max-width: 620px;
}

.final-cta-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.4vw, 68px);
  overflow-wrap: break-word;
}

.final-cta-copy > p {
  max-width: 540px;
}

.final-cta-rating {
  width: 100%;
  max-width: 340px;
  min-width: 0;
  padding: 30px;
}

.final-cta-actions {
  max-width: 100%;
}

.final-cta-actions .button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

/* Tablet */

@media (max-width: 980px) {
  .final-cta-content {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 80px;
  }

  .final-cta-copy,
  .final-cta-copy h2,
  .final-cta-copy > p {
    max-width: 680px;
  }

  .final-cta-rating {
    justify-self: start;
    max-width: 360px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .final-cta-content {
    width: calc(100% - 28px);
    padding-block: 68px;
  }

  .final-cta-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .final-cta-actions {
    width: 100%;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .final-cta-rating {
    max-width: 100%;
  }
}

/* =========================================================
   PREMIUM SITE FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;

  padding-top: 105px;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(47, 169, 181, 0.16),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #001f42 0%,
      #003976 58%,
      #002b58 100%
    );

  color: var(--white);
}

/* ---------- Background Watermark ---------- */

.footer-watermark {
  position: absolute;
  right: -25px;
  top: 25px;

  color: rgba(255, 255, 255, 0.025);

  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 240px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;

  white-space: nowrap;
  pointer-events: none;
}

/* ---------- Main Footer Layout ---------- */

.footer-top {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(70px, 9vw, 140px);

  padding-bottom: 80px;
}

/* ---------- Brand ---------- */

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;

  margin-bottom: 30px;
}

.footer-logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-intro {
  margin: 0 0 34px;

  color: rgba(255, 255, 255, 0.70);

  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Rating ---------- */

.footer-rating {
  display: flex;
  align-items: center;
  gap: 18px;

  padding-top: 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-rating-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.footer-rating-score strong {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.footer-rating-score span {
  color: rgba(255, 255, 255, 0.48);

  font-size: 13px;
  font-weight: 700;
}

.footer-rating > div:last-child p {
  margin: 0 0 4px;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.footer-rating > div:last-child span {
  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
  line-height: 1.5;
}

/* ---------- Navigation Columns ---------- */

.footer-navigation {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.25fr;
  gap: clamp(38px, 5vw, 75px);
}

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

.footer-column-title {
  margin: 0 0 28px;

  color: var(--signature);

  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column > a:not(.footer-contact-link):not(.footer-partner) {
  position: relative;

  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.72);

  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;

  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.footer-column > a:not(.footer-contact-link):not(.footer-partner):hover {
  color: var(--white);
  transform: translateX(5px);
}

/* ---------- Contact ---------- */

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.7;

  transition: color 0.3s var(--ease);
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-link svg {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  margin-top: 4px;

  color: var(--signature);
  stroke-width: 1.8;
}

/* ---------- Connected Brands ---------- */

.footer-partner {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;
  padding: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;

  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.footer-partner:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(47, 169, 181, 0.48);
}

.footer-partner-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: rgba(47, 169, 181, 0.12);
  border: 1px solid rgba(47, 169, 181, 0.35);
  border-radius: 50%;
}

.footer-partner-icon svg {
  width: 19px;
  height: 19px;

  color: var(--signature);
  stroke-width: 1.8;
}

.footer-partner strong {
  display: block;

  margin-bottom: 3px;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.footer-partner small {
  display: block;

  color: rgba(255, 255, 255, 0.52);

  font-size: 11px;
  line-height: 1.45;
}

/* ---------- Social Links ---------- */

.footer-socials {
  display: flex;
  gap: 10px;

  margin-top: 15px;
}

.footer-socials a {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  color: var(--white);

  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.footer-socials a:hover {
  transform: translateY(-3px);

  background: var(--signature);
  border-color: var(--signature);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ---------- Booking Strip ---------- */

.footer-booking-strip {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding: 36px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-booking-label {
  margin: 0 0 8px;

  color: var(--signature);

  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-booking-strip h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(24px, 2.5vw, 38px);
}

.footer-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-button-light {
  background: var(--white);
  color: var(--ocean);
}

.footer-button-light:hover {
  background: var(--signature);
  color: var(--white);
}

.footer-button-outline {
  border-color: rgba(255, 255, 255, 0.50);
  background: transparent;
  color: var(--white);
}

.footer-button-outline:hover {
  background: var(--white);
  color: var(--ocean);
}

/* ---------- Bottom Footer ---------- */

.footer-bottom-wrap {
  position: relative;
  z-index: 2;

  background: rgba(0, 18, 40, 0.35);
}

.footer-bottom {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;

  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-back-top svg {
  width: 15px;
  height: 15px;

  color: var(--signature);
}

/* =========================================================
   FOOTER — TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .footer-brand {
    max-width: 620px;
  }

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

  .footer-booking-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

/* =========================================================
   FOOTER — MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .site-footer {
    padding-top: 72px;
  }

  .footer-top {
    gap: 55px;
    padding-bottom: 55px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-rating {
    align-items: flex-start;
  }

  .footer-booking-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-booking-actions .button {
    width: 100%;
  }

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

    padding-block: 24px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-watermark {
    right: -10px;
    top: 20px;
    font-size: 90px;
  }
}

/* FOOTER — COMPACT WIDTH FIX */

.footer-top,
.footer-booking-strip,
.footer-bottom {
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.footer-top {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  gap: clamp(55px, 7vw, 100px);
}

.footer-navigation {
  grid-template-columns: 0.7fr 1fr 1.15fr;
  gap: clamp(28px, 4vw, 55px);
}

.footer-brand {
  max-width: 360px;
}

.footer-partner {
  padding: 14px;
}

@media (max-width: 1050px) {
  .footer-top,
  .footer-booking-strip,
  .footer-bottom {
    width: min(100% - 40px, 900px);
  }
}

@media (max-width: 700px) {
  .footer-top,
  .footer-booking-strip,
  .footer-bottom {
    width: calc(100% - 28px);
  }
}
.footer-map-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.footer-map-link svg{
    width:16px;
    height:16px;
    stroke-width:1.8;
}

.footer-navigation-app img{
    width:22px;
    height:22px;
    object-fit:contain;
    flex-shrink:0;
}

.floating-actions{
    position:fixed;
    right:24px;
    bottom:24px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:9999;
}

.floating-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.25s ease;
}

.floating-btn:hover{
    transform:translateY(-3px) scale(1.08);
    box-shadow:0 16px 40px rgba(0,0,0,.25);
}

.floating-btn img{
    width:30px;
    height:30px;
    object-fit:contain;
}

.footer-socials img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

/* ==========================
   Partner Logos
========================== */

.footer-partner-logo{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.footer-partner-logo img{
    width:100%;
    height:100%;

    object-fit:contain;
    display:block;
}

/* Connected brand logos */

.footer-partner-logo {
  flex: 0 0 72px;
  width: 72px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.footer-partner-logo img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-partner-copy {
  min-width: 0;
}

.footer-socials img {
  width: 24px;
  height: 24px;

  display: block;
  object-fit: contain;
}
.footer-partner {
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
}

.footer-partner:hover {
  transform: translateY(-2px);
}
/* =========================================
   MOBILE FIX — CHEF MO + SIGNATURE CAPTION
   ========================================= */

@media (max-width: 768px) {

  /* Chef Mo section: تبدیل دو ستون به یک ستون */
  #chef-mo .chef-grid,
  .chef-mo-section .chef-grid,
  .persian-dining-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
  }

  /* متن Chef Mo تمام عرض موبایل را بگیرد */
  #chef-mo .chef-content,
  .chef-mo-section .chef-content,
  .persian-dining-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    order: 1;
  }

  /* جلوگیری از فشرده‌شدن متن کنار عکس */
  #chef-mo .chef-content h2,
  #chef-mo .chef-content p,
  .chef-mo-section .chef-content h2,
  .chef-mo-section .chef-content p,
  .persian-dining-content h2,
  .persian-dining-content p {
    width: 100% !important;
    max-width: none !important;
  }

  /* عکس Chef Mo زیر متن و در یک ردیف مستقل */
  #chef-mo .chef-image,
  .chef-mo-section .chef-image,
  .persian-dining-image {
    position: relative !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    order: 2;
  }

  #chef-mo .chef-image img,
  .chef-mo-section .chef-image img,
  .persian-dining-image img {
    display: block !important;
    width: 100% !important;
    max-width: 420px !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: cover !important;
  }

  /* عنوان نستعلیق Ocean Vibes Inn */
  .story-image .signature-caption {
    width: 100% !important;
    max-width: 100% !important;
    margin: 34px auto 0 !important;
    padding: 0 12px !important;

    display: block !important;
    text-align: center !important;

    font-size: clamp(31px, 10vw, 48px) !important;
    line-height: 1.15 !important;

    white-space: nowrap !important;
    overflow: visible !important;
    transform: none !important;
  }
}

/* ==================================================
   OCEAN VIBES — MOBILE FIX
   Chef Mo section + Nastaliq signature
   ================================================== */

@media (max-width: 768px) {

  /* ---------- CHEF MO SECTION ---------- */

  #chef-mo .chefmo-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    width: 100% !important;
    gap: 30px !important;
  }

  #chef-mo .chefmo-content {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #chef-mo .chefmo-image {
    order: 2 !important;
    position: relative !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #chef-mo .chefmo-image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: cover !important;
  }

  #chef-mo .chefmo-content h2,
  #chef-mo .chefmo-content p,
  #chef-mo .chefmo-lead {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #chef-mo .chefmo-content h2 {
    font-size: clamp(34px, 10vw, 52px) !important;
    line-height: 1.08 !important;
  }

  #chef-mo .chefmo-content p {
    font-size: 17px !important;
    line-height: 1.75 !important;
  }

  #chef-mo .chefmo-highlights {
    width: 100% !important;
  }

  #chef-mo .chefmo-buttons {
    width: 100% !important;
  }

  /* ---------- OCEAN VIBES NASTALIQ ---------- */

  .story-image {
    overflow: hidden !important;
  }

  .story-image .signature-caption {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;

    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    margin: 28px auto 0 !important;
    padding: 0 12px 14px !important;

    gap: 10px !important;

    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.15 !important;
    text-align: center !important;

    white-space: nowrap !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .story-image .signature-caption span {
    display: inline-block !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) {

  /* Google Maps and Waze */
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    margin-top: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .footer-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
  }

  .footer-socials img {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
  }

  /* Copyright + Instagram + Facebook */
  .footer-bottom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }

  .footer-bottom > p {
    margin: 0 !important;
    flex: 1 1 auto !important;
    text-align: left !important;
    font-size: 13px !important;
  }

  .footer-navigation-apps {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .footer-navigation-app {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
  }

  .footer-navigation-app img {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    object-fit: contain !important;
  }
}

/* =========================================
   MOBILE FIX — GOOGLE MAPS + WAZE
   ========================================= */

@media (max-width: 768px) {

  .footer-socials {
    position: relative !important;
    z-index: 10 !important;

    width: 100% !important;
    min-height: 52px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 12px !important;
    margin: 22px 0 0 !important;
    padding: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
  }

  .footer-socials a {
    position: relative !important;

    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 48px !important;

    margin: 0 !important;
    padding: 9px !important;

    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50% !important;

    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
  }

  .footer-socials a img {
    width: 29px !important;
    height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;

    display: block !important;
    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
  }
}

/* Waze + Google Maps mobile visibility fix */
@media (max-width: 700px) {
  .site-footer .footer-navigation .footer-column .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;
    min-height: 52px !important;

    gap: 14px !important;
    margin: 22px 0 0 !important;
    padding: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
  }

  .site-footer .footer-navigation .footer-column .footer-socials a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    flex: 0 0 48px !important;

    margin: 0 !important;
    padding: 9px !important;

    background: #ffffff !important;
    border-radius: 50% !important;

    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-footer .footer-navigation .footer-column .footer-socials a img {
    display: block !important;

    width: 29px !important;
    height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }
}

/* =========================================================
   FINAL MOBILE FOOTER FIX
   ========================================================= */

@media (max-width: 700px) {

  /* Compact width rules were overriding the original mobile layout */
  .site-footer .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 55px !important;

    width: calc(100% - 28px) !important;
    margin-inline: auto !important;
  }

  .site-footer .footer-navigation {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 38px 22px !important;

  width: 100% !important;
  min-width: 0 !important;
}

/* Connected Brands تمام عرض ردیف بعدی را بگیرد */
.site-footer .footer-navigation .footer-column:nth-child(3) {
  grid-column: 1 / -1 !important;
}

  .site-footer .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  /* Google Maps and Waze stay under Connected Brands */
  .site-footer .footer-socials {
    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 12px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-footer .footer-socials a {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    flex: 0 0 46px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 9px !important;

    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    border-radius: 50% !important;

    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
  }

  .site-footer .footer-socials a img {
    display: block !important;

    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  /* Copyright and Instagram/Facebook */
  .site-footer .footer-bottom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;

    width: calc(100% - 28px) !important;
    gap: 14px !important;
    padding-block: 24px !important;
  }

  .site-footer .footer-bottom > p {
    flex: 1 1 auto !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .site-footer .footer-navigation-apps {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;

    flex: 0 0 auto !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  .site-footer .footer-navigation-app {
    width: 36px !important;
    height: 36px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-footer .footer-navigation-app img {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    object-fit: contain !important;
  }
}

.site-footer .footer-navigation .footer-column:nth-child(1),
.site-footer .footer-navigation .footer-column:nth-child(2) {
  min-width: 0 !important;
}

.site-footer .footer-column-title {
  margin-bottom: 20px !important;
}

.site-footer .footer-contact-link {
  gap: 9px !important;
  font-size: 13px !important;
}

.site-footer .footer-partner {
  max-width: 100% !important;
}

/* =========================================================
   EXISTING GALLERY LIGHTBOX
   ========================================================= */

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  background: rgba(0, 15, 32, 0.94);
  backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox > img {
  display: block;

  width: auto;
  height: auto;

  max-width: min(1200px, 92vw);
  max-height: 88vh;

  object-fit: contain;

  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  padding: 0;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;

  color: #ffffff;

  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--signature);
  border-color: var(--signature);
}

@media (max-width: 700px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox > img {
    max-width: 100%;
    max-height: 82svh;
    border-radius: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;

    width: 44px;
    height: 44px;
  }
}

.hero-media picture{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    max-width:none;
    display:block;
    object-fit:cover;
    object-position:center center;
}