:root {
  --oi-navy: #071426;
  --oi-cream: #f7f2ea;
  --oi-cream-2: #efe6d8;
  --oi-gold: #c9a45d;
  --oi-gold-dark: #a8823f;
  --oi-ink: #111827;
  --oi-muted: #5f6673;
  --oi-line: #e6dfd4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--oi-cream);
  color: var(--oi-ink);
}

h1,
h2,
.font-serif {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

.oi-container-wide {
  width: calc(100% - 40px);
  max-width: none;
  margin-inline: auto;
}

.oi-topbar {
  height: 40px;
  background: var(--oi-navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  overflow-x: clip;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.oi-topbar.hide-on-scroll {
  transform: translateY(-100%);
  opacity: 0;
}

.oi-header {
  top: 40px;
  background: transparent;
  transition:
    top 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.oi-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(230, 223, 212, 0.9);
  box-shadow: 0 10px 30px rgba(7, 20, 38, 0.08);
}

.oi-navbar {
  min-height: 98px;
  overflow-x: clip;
}

.oi-logo {
  width: 270px;
  min-width: 240px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.oi-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.oi-header:not(.scrolled) .oi-logo img {
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
}

.oi-header.scrolled .oi-logo img {
  filter: none;
  mix-blend-mode: normal;
}

.oi-nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.oi-header.scrolled .oi-nav-link {
  color: var(--oi-navy) !important;
  text-shadow: none;
}

.oi-phone {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.oi-header.scrolled .oi-phone {
  color: var(--oi-navy);
  text-shadow: none;
}

.oi-btn-dark {
  background: var(--oi-navy);
  color: #fff;
  font-weight: 800;
  border-radius: 4px;
  padding: 0.78rem 1.35rem;
  border: 0;
}

.oi-btn-dark:hover {
  background: #0d213a;
  color: #fff;
}

.oi-btn-gold {
  background: linear-gradient(135deg, var(--oi-gold), var(--oi-gold-dark));
  color: #fff;
  font-weight: 800;
  border-radius: 4px;
  padding: 0.78rem 1.35rem;
  border: 0;
}

.oi-btn-gold:hover {
  color: #fff;
  filter: brightness(0.96);
}

.oi-header:not(.scrolled) .oi-btn-dark {
  background: rgba(7, 20, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.oi-mobile-toggle {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.oi-mobile-toggle .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.oi-header.scrolled .oi-mobile-toggle {
  color: var(--oi-navy);
  border-color: var(--oi-line);
}

.oi-header.scrolled .oi-mobile-toggle .navbar-toggler-icon {
  filter: none;
}

.oi-mobile-menu {
  background: #fffaf3;
}

.oi-mobile-menu .oi-logo img {
  filter: none;
  mix-blend-mode: normal;
}

.oi-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: var(--oi-navy);
}

.oi-hero-image,
.oi-hero-overlay {
  position: absolute;
  inset: 0;
}

.oi-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oi-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 20, 38, 0.6), rgba(7, 20, 38, 0.6));
}

.oi-hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.oi-hero-text {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-top: 120px;
}

.oi-hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 600;
}

.oi-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.oi-price {
  color: var(--oi-gold);
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 0.9;
}

.oi-section {
  padding: 86px 0;
}

.oi-section-white {
  background: #fffaf3;
}

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

.oi-section-soft {
  background: #f3ede3;
}

.oi-eyebrow {
  color: var(--oi-gold-dark);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}

.oi-section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 600;
}

.oi-lead {
  color: var(--oi-muted);
  font-size: 17px;
}

.oi-section-dark .oi-lead {
  color: rgba(255, 255, 255, 0.75);
}

.oi-facility {
  min-height: 112px;
  border-right: 1px solid var(--oi-line);
  border-bottom: 1px solid var(--oi-line);
}

.oi-facility:first-child {
  border-left: 1px solid var(--oi-line);
}

.oi-card {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(7, 20, 38, 0.09);
}

.oi-card img {
  height: 240px;
  object-fit: cover;
}

.oi-room-card img {
  height: 260px;
}

.oi-room-rate {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 164, 93, 0.15);
  color: var(--oi-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.oi-room-meta {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--oi-muted);
}

.oi-room-meta li {
  margin-bottom: 10px;
}

.oi-room-meta strong {
  color: var(--oi-navy);
}

.oi-mini-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  background: #ddd4c6;
}

.oi-mini-card span {
  display: block;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  background: #eee5d8;
}

.oi-offer-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(201, 164, 93, 0.16);
  color: var(--oi-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.oi-booking-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(7, 20, 38, 0.14);
}

.oi-booking-field {
  padding: 18px 20px;
  border-right: 1px solid var(--oi-line);
  color: var(--oi-ink);
}

.oi-booking-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oi-booking-field input,
.oi-booking-field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--oi-ink);
  font-size: 15px;
  outline: none;
}

.oi-booking-field input {
  cursor: pointer;
}

.datepicker-dropdown {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(7, 20, 38, 0.18);
  padding: 10px;
}

.datepicker table tr td,
.datepicker table tr th {
  border-radius: 10px;
  width: 36px;
  height: 36px;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover {
  background-image: none;
  background-color: var(--oi-gold);
}

.oi-booking-field small {
  display: block;
  color: var(--oi-muted);
}

.oi-trust,
.oi-why {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.oi-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd4c6;
  box-shadow: 0 18px 50px rgba(7, 20, 38, 0.1);
}

.oi-gallery-item-wide {
  min-height: 320px;
}

.oi-gallery-item-hero {
  min-height: 100%;
  height: 100%;
}

.oi-gallery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oi-gallery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 20, 38, 0.06);
  color: var(--oi-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

button.oi-gallery-chip {
  cursor: pointer;
}

button.oi-gallery-chip:hover,
button.oi-gallery-chip:focus-visible {
  background: rgba(7, 20, 38, 0.11);
  border-color: rgba(7, 20, 38, 0.1);
}

button.oi-gallery-chip.is-active {
  background: linear-gradient(135deg, var(--oi-gold), var(--oi-gold-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(201, 164, 93, 0.22);
}

.oi-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.oi-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0.05), rgba(7, 20, 38, 0.45));
  transition: opacity 0.3s ease;
}

.oi-gallery-item:hover img,
.oi-gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

.oi-gallery-item:hover::after,
.oi-gallery-item:focus-visible::after {
  opacity: 0.92;
}

.oi-gallery-trigger {
  cursor: zoom-in;
}

.oi-gallery-more-toggle {
  min-width: 220px;
}

.oi-gallery-card.is-hidden {
  display: none;
}

.oi-gallery-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  background: rgba(7, 20, 38, 0.78);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.oi-gallery-modal .modal-content {
  background: transparent;
  border: 0;
}

.oi-gallery-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  background: #0b1220;
}

.oi-gallery-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 1;
}

.oi-gallery-modal-caption {
  color: #fff;
  text-align: center;
  padding-top: 14px;
  font-weight: 600;
}

.oi-placeholder-box {
  padding: 20px;
  border-radius: 14px;
  border: 2px dashed #d8cbb4;
  background: rgba(255, 255, 255, 0.7);
  color: var(--oi-muted);
}

.oi-about-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.oi-about-point,
.oi-nearby-list-item {
  padding: 18px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fbf8f2);
  border: 1px solid var(--oi-line);
}

.oi-about-point {
  font-weight: 600;
  color: var(--oi-navy);
}

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

.oi-nearby-list-item h3 {
  margin-bottom: 8px;
  color: var(--oi-navy);
}

.oi-nearby-list-item p {
  margin-bottom: 0;
  color: var(--oi-muted);
}

.oi-map {
  min-height: 420px;
  width: 100%;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(7, 20, 38, 0.14);
}

.oi-footer {
  background: #050d1b;
  color: rgba(255, 255, 255, 0.76);
  padding: 48px 0 96px;
}

.oi-footer a,
.oi-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.oi-footer .oi-logo img {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.oi-mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--oi-line);
  padding: 10px 14px;
}

.oi-page-hero {
  background: var(--oi-navy);
  color: white;
  padding: 170px 0 86px;
}

.oi-legal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(7, 20, 38, 0.08);
}

.oi-nearby-panel {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--oi-line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(7, 20, 38, 0.08);
  transform: translateY(8px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.collapse.show .oi-nearby-panel,
.collapsing .oi-nearby-panel {
  transform: translateY(0);
  opacity: 1;
}

.collapsing .oi-nearby-panel {
  pointer-events: none;
}

.oi-nearby-intro {
  height: 100%;
  padding: 8px 4px 8px 0;
}

.oi-nearby-feature-list {
  display: grid;
  gap: 14px;
}

.oi-nearby-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff, #fbf8f2);
  border: 1px solid var(--oi-line);
  border-radius: 18px;
}

.oi-nearby-feature strong {
  display: block;
  color: var(--oi-navy);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.oi-nearby-feature span {
  color: var(--oi-muted);
  font-size: 0.94rem;
}

.oi-nearby-icon,
.oi-nearby-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--oi-gold), var(--oi-gold-dark));
  color: #fff;
  font-weight: 800;
  flex: 0 0 42px;
  box-shadow: 0 10px 24px rgba(201, 164, 93, 0.28);
}

.oi-nearby-card {
  background: linear-gradient(180deg, #fffdf9, var(--oi-cream));
  border: 1px solid var(--oi-line);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(7, 20, 38, 0.05);
}

.oi-nearby-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.oi-nearby-card h4 {
  color: var(--oi-navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.oi-nearby-card p {
  color: var(--oi-muted);
  margin-bottom: 0;
}

.oi-nearby-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 20, 38, 0.06);
  color: var(--oi-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .oi-nearby-panel {
    padding: 24px;
  }

  .oi-nearby-intro {
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .oi-nearby-feature {
    padding: 14px 14px;
  }

  .oi-nearby-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .oi-nearby-badge {
    white-space: normal;
  }

  .oi-gallery-item,
  .oi-gallery-item-wide,
  .oi-gallery-item-hero {
    min-height: 240px;
  }

  .oi-gallery-label {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
  }
}

@media (max-width: 991.98px) {
  .oi-mini-card img {
    height: 220px;
  }

  .oi-room-card img {
    height: 230px;
  }

  .oi-logo {
    width: 180px;
    min-width: 180px;
    height: 72px;
  }

  .oi-logo img {
    height: 64px;
  }

  .oi-navbar {
    min-height: 86px;
  }

  .oi-hero-content {
    /* align-items: flex-end; */
    padding-bottom: 54px;
  }

  .oi-booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--oi-line);
  }

  .oi-section {
    padding: 58px 0;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 72px;
  }

  .oi-topbar {
    height: auto;
    min-height: 36px;
    font-size: 12px;
  }

  .oi-topbar .container {
    padding-left: 12px;
    padding-right: 12px;
    justify-content: center !important;
    text-align: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .oi-topbar .container > div:first-child {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .oi-topbar .oi-hide-mobile {
    display: none !important;
  }

  .oi-header {
    top: 36px;
  }

  .oi-header.scrolled {
    top: 0;
  }

  .oi-navbar .container {
    padding-left: 12px;
    padding-right: 12px;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: hidden;
  }

  .oi-navbar .navbar-brand {
    margin-right: 0;
  }

  .oi-logo {
    width: auto;
    min-width: 0;
    max-width: calc(100% - 52px);
    height: 52px;
    overflow: hidden;
    flex: 1 1 auto;
  }

  .oi-logo img {
    display: block;
    max-width: 100%;
    width: auto;
    height: 42px;
    max-height: 42px;
  }

  .oi-mobile-toggle {
    flex: 0 0 auto;
    padding: 0.375rem 0.55rem;
  }

  .oi-hero-overlay {
    background: linear-gradient(180deg, rgba(7, 20, 38, 0.35), rgba(7, 20, 38, 0.9));
  }

  .oi-hero h1 {
    font-size: 38px;
  }

  .oi-hero p {
    font-size: 15px;
  }

  .oi-price {
    font-size: 48px;
  }

  .oi-mobile-sticky {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
