:root {
  --background: #f9f9f9;
  --surface: #ffffff;
  --surface-low: #f3f3f3;
  --surface-high: #e8e8e8;
  --surface-highest: #e2e2e2;
  --text: #1a1c1c;
  --text-muted: #3d4949;
  --outline: #bcc9c8;
  --primary: #006767;
  --primary-soft: rgba(0, 103, 103, 0.1);
  --secondary: #9a4600;
  --secondary-soft: rgba(154, 70, 0, 0.12);
  --tertiary: #735c00;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 24px 60px rgba(20, 32, 32, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --layout: min(1200px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--background);
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(249, 249, 249, 0.9);
  border-bottom: 1px solid rgba(188, 201, 200, 0.55);
}

.nav-shell {
  width: var(--layout);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.site-nav a,
.menu-toggle,
.section-tag,
.booking-field span,
.mini-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--text-muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--primary);
  padding: 10px 14px;
  border-radius: var(--radius-full);
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.pill-link:hover,
.pill-link:focus-visible,
.booking-button:hover,
.booking-button:focus-visible,
.floating-chat:hover,
.floating-chat:focus-visible {
  transform: translateY(-1px);
}

.pill-link-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.pill-link-muted {
  border: 1px solid rgba(0, 103, 103, 0.22);
  color: var(--primary);
  background: transparent;
}

.pill-link-inverse {
  background: #ffffff;
  color: var(--primary);
}

.pill-link-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.hero-panel {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-backdrop,
.hero-backdrop img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 24, 24, 0.22), rgba(15, 24, 24, 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding: 120px 0 80px;
}

.hero-copy {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.section-tag {
  margin: 0 0 16px;
  color: var(--primary);
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-tag-secondary {
  color: var(--secondary);
}

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

h1 {
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #ffffff;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

p,
li,
input {
  font-size: 16px;
  line-height: 1.6;
}

.hero-summary,
.section-lead,
.guide-card li,
.review-card p,
.footer-brand-block p,
.footer-links-block p {
  color: var(--text-muted);
}

.hero-summary {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-strong);
}

.booking-bar {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
}

.booking-field {
  display: grid;
  gap: 6px;
  padding: 16px 24px;
  min-width: 0;
}

.booking-field + .booking-field {
  border-left: 1px solid rgba(188, 201, 200, 0.5);
}

.booking-field span {
  color: var(--primary);
}

.booking-field input {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  outline: none;
}

.booking-field input::placeholder {
  color: rgba(61, 73, 73, 0.7);
}

.booking-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.section-heading-center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
}

.section-lead {
  max-width: 680px;
}

.section-lead-side {
  justify-self: end;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.bento-card,
.surface-card,
.cta-panel {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-card {
  position: relative;
  min-height: 260px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bento-card img {
  height: 100%;
  object-fit: cover;
}

.bento-card-large {
  grid-column: span 8;
  min-height: 560px;
}

.bento-card-tall {
  grid-column: span 4;
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
}

.bento-card-wide {
  grid-column: span 8;
  min-height: 320px;
}

.accent-surface {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f7 100%);
}

.accent-surface-muted {
  grid-column: span 4;
  background: linear-gradient(180deg, rgba(0, 103, 103, 0.05), rgba(0, 103, 103, 0.12));
  display: flex;
}

.bento-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.bento-copy-overlay {
  position: absolute;
  inset: auto 0 0 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.64));
}

.bento-copy-overlay p {
  color: rgba(255, 255, 255, 0.82);
}

.mini-label {
  color: var(--secondary);
}

.amenities-band {
  background: var(--surface-low);
  padding: 28px 0;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.amenity-chip {
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(0, 103, 103, 0.16);
  font-size: 14px;
  font-weight: 600;
}

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

.surface-card {
  background: var(--surface);
  border: 1px solid var(--surface-high);
  box-shadow: var(--shadow);
}

.review-card {
  padding: 32px;
}

.review-heading {
  margin-bottom: 32px;
}

.rating-pill {
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
}

.rating-pill strong {
  font-size: 24px;
}

.rating-pill span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

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

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-meta strong,
.footer-links-block a,
.footer-bottom a {
  font-size: 14px;
  font-weight: 700;
}

.review-meta span:last-child {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

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

.property-gallery-shell {
  display: grid;
  gap: 24px;
}

.gallery-stage {
  padding: 24px;
  display: grid;
  gap: 20px;
}

.gallery-stage-top,
.gallery-stage-bottom,
.gallery-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-kicker,
.gallery-count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-kicker {
  color: var(--secondary);
  margin-bottom: 6px;
}

.gallery-count {
  color: var(--text-muted);
  white-space: nowrap;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-control {
  border: 1px solid var(--outline);
  background: var(--surface);
  color: var(--text);
  min-width: 74px;
  min-height: 42px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-frame {
  margin: 0;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-low);
}

.gallery-frame img {
  height: 100%;
  object-fit: cover;
  transition:
    opacity 320ms ease,
    transform 520ms ease;
}

.gallery-frame.is-transitioning img {
  opacity: 0.42;
  transform: scale(1.03);
}

.gallery-caption {
  max-width: 760px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.gallery-thumb {
  border: 1px solid var(--surface-high);
  background: var(--surface);
  border-radius: 18px;
  padding: 10px;
  display: grid;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 103, 103, 0.28);
  box-shadow: 0 10px 24px rgba(20, 32, 32, 0.08);
}

.gallery-thumb img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-thumb span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.gallery-thumb.is-active span {
  color: var(--primary);
}

.gallery-cta-strip {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.guide-book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.guide-heading-simple {
  margin-bottom: 28px;
}

.guide-book-layout-simple {
  grid-template-columns: 1fr;
}

.guide-book-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.guide-book-panel-simple {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.guide-book-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-book-tab {
  border: 1px solid var(--surface-high);
  background: var(--surface);
  color: var(--text-muted);
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.guide-book-tab:hover,
.guide-book-tab:focus-visible,
.guide-book-tab.is-active {
  color: var(--primary);
  border-color: rgba(0, 103, 103, 0.28);
  box-shadow: 0 10px 24px rgba(20, 32, 32, 0.08);
  transform: translateY(-1px);
}

.guide-book-stage {
  position: relative;
  width: 100%;
  min-height: 1640px;
  padding: 30px 26px 30px 40px;
  perspective: 1800px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 243, 243, 0.92));
}

.guide-book-spine {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 18px;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(115, 92, 0, 0.18), rgba(154, 70, 0, 0.18));
}

.guide-book-page {
  position: absolute;
  inset: 28px 24px 28px 34px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 32, 32, 0.08);
  transform-origin: left center;
  transform: rotateY(-72deg) scale(0.97);
  opacity: 0;
  transition:
    transform 620ms cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 320ms ease,
    box-shadow 320ms ease;
  backface-visibility: hidden;
}

.guide-book-page img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.guide-book-page.is-active {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 26px 50px rgba(20, 32, 32, 0.14);
}

.guide-book-page.is-behind {
  transform: rotateY(-14deg) translateX(12px) scale(0.985);
  opacity: 0.38;
  z-index: 1;
}

.guide-summary {
  padding: 32px;
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.guide-summary-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.guide-summary-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
}

.cta-panel {
  background: linear-gradient(145deg, var(--primary) 0%, #0b5858 62%, var(--secondary) 100%);
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-copy {
  display: grid;
  gap: 20px;
}

.cta-copy p:last-of-type {
  color: rgba(255, 255, 255, 0.82);
}

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

.cta-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: stretch;
}

.cta-thumb {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.cta-thumb img {
  height: 100%;
  object-fit: cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.footer-brand-block,
.footer-links-block {
  display: grid;
  gap: 16px;
}

.footer-links-block a,
.footer-links-block p,
.footer-bottom p,
.footer-bottom a {
  color: var(--text-muted);
}

.footer-links-block a:hover,
.footer-links-block a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-highest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  padding: 15px 22px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
}

.reveal-target {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .nav-shell,
  .layout-shell {
    width: min(100vw - 24px, 100% - 24px);
  }

  .nav-actions {
    gap: 12px;
  }

  .site-nav {
    gap: 20px;
  }

  .booking-bar,
  .section-heading-split,
  .cta-panel,
  .footer-grid,
  .review-grid,
  .guide-book-layout,
  .gallery-stage-top,
  .gallery-stage-bottom {
    grid-template-columns: 1fr;
  }

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

  .gallery-frame {
    min-height: 480px;
  }

  .guide-book-stage {
    min-height: 1400px;
  }

  .booking-bar {
    border-radius: 28px;
  }

  .booking-field + .booking-field {
    border-left: 0;
    border-top: 1px solid rgba(188, 201, 200, 0.5);
  }

  .booking-button {
    width: 100%;
    height: 54px;
    border-radius: var(--radius-full);
  }

  .section-lead-side,
  .rating-pill {
    justify-self: start;
  }

  .bento-card-large,
  .bento-card-tall,
  .accent-surface-muted,
  .bento-card-wide {
    grid-column: span 12;
  }

  .bento-card-large,
  .bento-card-tall,
  .bento-card-wide {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    padding: 14px 0;
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(188, 201, 200, 0.55);
  }

  .site-nav.is-open {
    display: flex;
  }

  .pill-link-muted,
  .pill-link-primary {
    width: 100%;
  }

  .hero-content {
    padding: 104px 0 56px;
  }

  .gallery-stage,
  .cta-panel,
  .guide-summary {
    padding: 32px 24px;
  }

  .gallery-stage-top,
  .gallery-stage-bottom {
    display: grid;
    justify-content: stretch;
  }

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

  .guide-book-stage {
    padding: 24px 18px 24px 32px;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

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

  .gallery-frame {
    min-height: 320px;
  }

  .guide-book-stage {
    min-height: 1040px;
    padding: 18px 14px 18px 26px;
  }

  .guide-book-page {
    inset: 18px 14px 18px 22px;
  }

  .bento-grid {
    gap: 16px;
  }

  .review-card,
  .guide-summary {
    padding: 24px;
  }

  .floating-chat {
    right: 16px;
    bottom: 16px;
  }
}
