:root {
  --cream: #f6f0e5;
  --warm-white: #fffaf2;
  --sand: #dfd0b7;
  --olive: #7a7f54;
  --deep-green: #173c34;
  --leaf: #295d4d;
  --gold: #b98e45;
  --ink: #1f2622;
  --muted: #68716b;
  --line: rgba(31, 38, 34, 0.14);
  --shadow: 0 22px 48px rgba(23, 60, 52, 0.12);
  --radius: 8px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

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

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--deep-green);
  color: #fff;
  z-index: 50;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-green);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 142, 69, 0.55);
  border-radius: 50%;
  background: #fff;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  border: 1px solid rgba(185, 142, 69, 0.35);
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu a {
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--gold);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(23, 60, 52, 0.18);
  border-radius: 999px;
  background: #fff;
}

.lang-switch a {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.lang-switch a.is-active {
  background: var(--deep-green);
  color: #fff;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--deep-green);
  color: #fff;
}

.button-light {
  background: var(--warm-white);
  color: var(--deep-green);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-ghost {
  background: transparent;
  color: var(--deep-green);
  border-color: rgba(23, 60, 52, 0.22);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--deep-green);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep-green);
}

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

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

.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(23, 60, 52, 0.84), rgba(23, 60, 52, 0.52) 42%, rgba(23, 60, 52, 0.12));
}

.hero-content {
  position: relative;
  padding: 150px 0 96px;
}

.hero-logo {
  width: min(210px, 48vw);
  height: auto;
  margin: 0 0 24px;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.9);
  padding: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero h1,
.page-hero h1,
.suite-hero h1,
.section-intro h2,
.split-intro h2,
.feature-band h2,
.reason-card h2,
.destination-grid h2,
.map-grid h2,
.inquiry-panel h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.14;
}

.hero h1 {
  max-width: 760px;
  font-size: 68px;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 30px;
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

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

.split-intro,
.destination-grid,
.map-grid,
.content-grid,
.location-layout,
.contact-layout,
.suite-detail-layout,
.page-hero-grid,
.suite-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.split-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split-intro h2,
.feature-band h2,
.destination-grid h2,
.map-grid h2,
.reason-card h2,
.inquiry-panel h2 {
  font-size: 38px;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 34px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2 {
  font-size: 42px;
}

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

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

.suite-card,
.reason-card,
.booking-card,
.contact-card,
.location-panel,
.experience-card,
.faq-list details,
.info-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.suite-card {
  overflow: hidden;
}

.suite-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.suite-card__media img,
.gallery-grid img,
.masonry-preview img,
.experience-card img,
.page-hero-grid img,
.suite-hero-media img,
.destination-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-card__body {
  padding: 22px;
}

.suite-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
}

.suite-card h3 a {
  text-decoration: none;
}

.suite-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.suite-facts,
.detail-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.suite-facts div,
.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

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

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.pill-list li,
.gallery-tabs button {
  border: 1px solid rgba(122, 127, 84, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--leaf);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.pill-list.stacked {
  display: grid;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-grid li,
.values-list div {
  min-height: 122px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.amenity-grid strong,
.values-list strong,
.reason-card strong {
  display: block;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}

.amenity-grid span,
.values-list span,
.reason-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.masonry-preview figure,
.gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.masonry-preview figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-preview figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.92);
  color: var(--deep-green);
  font-weight: 800;
}

.gallery-grid figcaption span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  min-height: 178px;
  padding: 22px;
}

.reason-card.is-large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--deep-green);
  color: #fff;
}

.reason-card.is-large p {
  color: rgba(255, 255, 255, 0.78);
}

.destination-section {
  background: var(--deep-green);
  color: #fff;
}

.destination-grid img,
.page-hero-grid img,
.suite-hero-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

blockquote p {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

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

.map-frame.tall {
  min-height: 560px;
}

.map-frame.small {
  min-height: 240px;
  margin-top: 22px;
}

.page-hero,
.suite-hero {
  padding: 96px 0 72px;
  background: var(--cream);
}

.page-hero.compact {
  padding: 92px 0 66px;
}

.page-hero h1,
.suite-hero h1 {
  max-width: 820px;
  font-size: 52px;
}

.page-hero p:not(.eyebrow),
.suite-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.inquiry-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.suite-hero {
  background: var(--warm-white);
}

.suite-detail-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.suite-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin-bottom: 34px;
}

.suite-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.suite-gallery img:first-child {
  height: 572px;
  grid-row: span 2;
}

.prose {
  max-width: 760px;
}

.prose h2,
.info-block h2,
.booking-card h2,
.contact-card h2,
.location-panel h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  color: var(--deep-green);
  font-size: 30px;
  line-height: 1.22;
}

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

.info-block,
.booking-card,
.contact-card,
.location-panel {
  padding: 26px;
}

.booking-card {
  position: sticky;
  top: 100px;
}

.booking-card .button {
  width: 100%;
  margin-top: 10px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-tabs button {
  cursor: pointer;
}

.gallery-tabs button.is-active {
  background: var(--deep-green);
  color: #fff;
}

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

.gallery-grid figure {
  min-height: 300px;
}

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

.experience-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}

.experience-card img {
  min-height: 260px;
}

.experience-card div {
  padding: 28px;
}

.experience-card h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  color: var(--deep-green);
}

.experience-card p {
  color: var(--muted);
}

.experience-card a {
  color: var(--deep-green);
  font-weight: 900;
}

.content-grid {
  align-items: start;
}

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

.faq-list {
  max-width: 860px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep-green);
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.location-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 60, 52, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  background: var(--deep-green);
  color: #fff;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 42px;
}

.brand-footer {
  color: #fff;
}

.footer-logo {
  background: rgba(255, 250, 242, 0.95);
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
}

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

.footer-menu a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.jsv-floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.jsv-wa-fab,
.jsv-ai-fab {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.52);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(23, 60, 52, 0.24);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.jsv-wa-fab {
  background: var(--leaf);
  color: #fff;
}

.jsv-ai-fab {
  background: var(--deep-green);
  color: #fff;
  cursor: pointer;
}

.jsv-wa-fab svg,
.jsv-ai-fab svg {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.jsv-ai-fab::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(185, 142, 69, 0.48);
  border-radius: 50%;
}

.jsv-ai-fab-core {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(185, 142, 69, 0.18);
}

.jsv-ai-fab-label {
  position: absolute;
  top: 6px;
  right: 5px;
  z-index: 3;
  width: 24px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.jsv-wa-fab:hover,
.jsv-ai-fab:hover,
.jsv-wa-fab:focus-visible,
.jsv-ai-fab:focus-visible {
  box-shadow: 0 22px 48px rgba(23, 60, 52, 0.32);
  outline: 2px solid rgba(185, 142, 69, 0.38);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.jsv-ai-fab[aria-expanded="true"] {
  background: var(--gold);
}

.jsv-ai-fab[aria-expanded="true"] .jsv-ai-fab-label {
  background: var(--deep-green);
}

.jsv-ai-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 90;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100svh - 122px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 52, 0.16);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 28px 80px rgba(23, 60, 52, 0.26);
  color: var(--ink);
}

.jsv-ai-panel[hidden] {
  display: none;
}

.jsv-ai-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px 14px;
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.jsv-ai-panel-header strong,
.jsv-ai-panel-header span {
  display: block;
}

.jsv-ai-panel-header strong {
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
}

.jsv-ai-panel-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.jsv-ai-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 60, 52, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--deep-green);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.jsv-ai-messages {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
}

.jsv-ai-message {
  max-width: 90%;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.45;
}

.jsv-ai-message-assistant {
  align-self: flex-start;
  border: 1px solid rgba(23, 60, 52, 0.1);
  background: #fff;
  color: var(--ink);
}

.jsv-ai-message-user {
  align-self: flex-end;
  border: 1px solid var(--deep-green);
  background: var(--deep-green);
  color: #fff;
}

.jsv-ai-message.is-thinking {
  color: var(--muted);
}

.jsv-ai-message.is-thinking::after {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  animation: jsv-ai-pulse 1s ease-in-out infinite;
}

.jsv-ai-prompts {
  display: flex;
  gap: 8px;
  padding: 0 14px 12px;
  overflow-x: auto;
}

.jsv-ai-prompts button {
  flex: 0 0 auto;
  border: 1px solid rgba(23, 60, 52, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--deep-green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.jsv-ai-prompts button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.jsv-ai-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.jsv-ai-form input {
  min-width: 0;
  border: 1px solid rgba(23, 60, 52, 0.2);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
  padding: 12px;
}

.jsv-ai-form input::placeholder {
  color: rgba(31, 38, 34, 0.44);
}

.jsv-ai-form button {
  border: 0;
  border-radius: var(--radius);
  background: var(--deep-green);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.jsv-ai-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.jsv-ai-form input:focus,
.jsv-ai-form button:focus-visible,
.jsv-ai-close:focus-visible,
.jsv-ai-prompts button:focus-visible {
  outline: 2px solid rgba(185, 142, 69, 0.42);
  outline-offset: 2px;
}

@keyframes jsv-ai-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--warm-white);
    box-shadow: var(--shadow);
  }

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

  .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .menu a {
    display: block;
    padding: 11px 0;
  }

  .nav-cta {
    width: 100%;
  }

  .lang-switch {
    justify-content: center;
  }

  .jsv-floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .jsv-wa-fab,
  .jsv-ai-fab {
    width: 52px;
    height: 52px;
  }

  .jsv-ai-panel {
    right: 16px;
    bottom: 82px;
    width: calc(100vw - 32px);
    height: min(520px, calc(100svh - 104px));
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .split-intro,
  .destination-grid,
  .map-grid,
  .content-grid,
  .location-layout,
  .contact-layout,
  .suite-detail-layout,
  .page-hero-grid,
  .suite-hero-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

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

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

  .booking-card {
    position: static;
  }

  .experience-card {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    align-items: stretch;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 520px);
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(23, 60, 52, 0.26), rgba(23, 60, 52, 0.86));
  }

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

  .hero h1,
  .page-hero h1,
  .suite-hero h1 {
    font-size: 38px;
  }

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .suite-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-intro h2,
  .split-intro h2,
  .feature-band h2,
  .destination-grid h2,
  .map-grid h2,
  .reason-card h2,
  .inquiry-panel h2 {
    font-size: 30px;
  }

  .suite-grid,
  .testimonial-grid,
  .gallery-grid,
  .masonry-preview,
  .amenity-grid,
  .reasons-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .masonry-preview figure:first-child,
  .reason-card.is-large {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry-preview figure,
  .gallery-grid figure {
    min-height: 260px;
  }

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

  .suite-gallery img,
  .suite-gallery img:first-child {
    height: 280px;
    grid-row: auto;
  }

  .inquiry-panel,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row,
  .button,
  .inquiry-panel .button {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .suite-facts div,
  .detail-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  dd {
    text-align: left;
  }
}
