:root {
  --limestone: #f4eddf;
  --cream: #fffaf0;
  --terracotta: #b85f46;
  --teal: #1e6b69;
  --coral: #dd8a74;
  --charcoal: #292724;
  --eucalyptus: #d9e2cf;
  --line: rgba(41, 39, 36, 0.18);
  --white: #fff;
  --radius: 28px;
  --shadow: 0 18px 50px rgba(43, 39, 32, 0.09);
  --header-h: 86px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--limestone);
  color: var(--charcoal);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: radial-gradient(
    rgba(41, 39, 36, 0.045) 0.7px,
    transparent 0.7px
  );
  background-size: 8px 8px;
}
body.azure-theme {
  --terracotta: #167f87;
  --teal: #126c70;
  --coral: #54b49e;
  --eucalyptus: #d9eee7;
}
body.copper-theme {
  --terracotta: #a75639;
  --teal: #65734e;
  --coral: #c57a55;
  --eucalyptus: #dfe3cf;
}
body.pacific-theme {
  --terracotta: #d97161;
  --teal: #176f72;
  --coral: #e49a81;
  --eucalyptus: #dce9df;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(1220px, calc(100% - 48px));
  margin: auto;
}
.narrow {
  width: min(850px, calc(100% - 48px));
  margin: auto;
}
h1,
h2,
h3 {
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 20px;
}
h1 {
  font-size: clamp(42px, 5.1vw, 64px);
}
h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}
h3 {
  font-size: 30px;
}
p {
  margin: 0 0 18px;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 760px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}
.section {
  padding: 110px 0;
}
.section-number {
  font-family: "DM Serif Display", serif;
  font-size: 54px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 20px;
}
.section-heading {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 55px;
}
.section-heading > div {
  max-width: 850px;
}
.section-heading p:last-child {
  max-width: 680px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  background: #154f4e;
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}
.text-link,
.text-button {
  display: inline-block;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  font-weight: 700;
  cursor: pointer;
}
.text-link:hover,
.text-button:hover {
  color: var(--terracotta);
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  background: #fff;
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.35s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.legal-page .site-header,
.contact-page .site-header,
.about-page .site-header {
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.header-inner {
  width: min(1360px, calc(100% - 40px));
  height: var(--header-h);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  transition: 0.3s;
}
.site-header.scrolled .header-inner {
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-family: "DM Serif Display";
  font-size: 24px;
}
.brand b {
  display: block;
  font-family: "DM Serif Display";
  font-size: 18px;
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-top: 4px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: 0.3s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.geo-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  position: relative;
}
.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--charcoal);
  left: 13px;
  top: 19px;
}
.menu-toggle span + span {
  top: 26px;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1400;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-15px);
  transition: 0.35s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.mobile-close {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 1px solid var(--line);
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
}
.mobile-menu-inner {
  width: min(650px, calc(100% - 48px));
}
.mobile-menu-inner > a {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "DM Serif Display";
  font-size: clamp(31px, 7vw, 54px);
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}
.mobile-menu-inner > a span {
  font: 600 11px Manrope;
  color: var(--terracotta);
}
.mobile-menu-inner > p:last-child {
  max-width: 550px;
  margin-top: 28px;
}
.home-hero {
  min-height: 820px;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 250, 240, 0.78),
    rgba(217, 226, 207, 0.55)
  );
}
.hero-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.hero-copy .lead {
  max-width: 630px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.age-note {
  font-size: 13px;
}
.age-note strong {
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.rotating-line {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.rotating-line b {
  color: var(--terracotta);
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-main-image {
  height: 620px;
  object-fit: cover;
  border-radius: 160px 28px 28px 28px;
}
.hero-small {
  position: absolute;
  width: 43%;
  left: -8%;
  bottom: 35px;
  border: 10px solid var(--limestone);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-small img {
  height: 210px;
  object-fit: cover;
}
.location-card {
  position: absolute;
  right: -20px;
  top: 42px;
  background: var(--cream);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: 145px;
}
.location-card span,
.location-card small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.location-card strong {
  display: block;
  font: 58px "DM Serif Display";
  color: var(--terracotta);
}
.asym-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 90px;
  align-items: start;
}
.section-copy h2 {
  max-width: 720px;
}
.image-stack {
  position: sticky;
  top: 110px;
}
.portrait-image {
  height: 740px;
  object-fit: cover;
  border-radius: 28px 150px 28px 28px;
}
.offset-image {
  width: 58%;
  margin: -90px 0 0 -65px;
  border: 10px solid var(--limestone);
  border-radius: 24px;
  overflow: hidden;
}
.offset-image img {
  height: 260px;
  object-fit: cover;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.stat-grid div {
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
}
.stat-grid strong {
  display: block;
  font: 40px "DM Serif Display";
  color: var(--terracotta);
}
.stat-grid span {
  font-size: 12px;
}
.hotel-guide {
  background: var(--cream);
}
.hotel-entry {
  margin: 100px 0;
  display: grid;
  gap: 70px;
  align-items: center;
}
.hotel-entry h3 {
  font-size: clamp(36px, 4vw, 54px);
}
.hotel-entry ul {
  padding-left: 20px;
  margin: 25px 0;
}
.hotel-entry a {
  display: block;
  width: max-content;
  margin-top: 12px;
}
.entry-one {
  grid-template-columns: 1.2fr 0.8fr;
}
.entry-one img {
  height: 600px;
  object-fit: cover;
  border-radius: 28px 150px 28px 28px;
}
.entry-number {
  font: 74px "DM Serif Display";
  color: rgba(184, 95, 70, 0.3);
}
.entry-two {
  grid-template-columns: 0.75fr 1.25fr;
}
.collage {
  position: relative;
  padding-right: 70px;
}
.collage > img {
  height: 620px;
  object-fit: cover;
  border-radius: 140px 28px 28px 28px;
}
.collage > div {
  position: absolute;
  width: 42%;
  right: 0;
  bottom: -55px;
  border: 10px solid var(--cream);
  border-radius: 22px;
  overflow: hidden;
}
.collage > div img {
  height: 270px;
  object-fit: cover;
}
.entry-three {
  display: block;
  position: relative;
}
.wide-image img {
  height: 650px;
  object-fit: cover;
  border-radius: 28px;
}
.floating-card {
  width: 48%;
  margin: -230px 45px 0 auto;
  position: relative;
  background: var(--cream);
  padding: 45px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.compare-section {
  background: var(--teal);
  color: #fff;
}
.compare-section .eyebrow,
.compare-section .section-number {
  color: #f2c2ae;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
}
.table-wrap table {
  border-collapse: collapse;
  min-width: 1050px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
}
th,
td {
  text-align: left;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  vertical-align: top;
  font-size: 13px;
}
thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.08);
}
tbody th {
  font-family: "DM Serif Display";
  font-size: 19px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.package-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 20px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
}
.package-card > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.package-card strong {
  color: var(--terracotta);
}
.package-card a {
  margin-top: auto;
  font-weight: 700;
}
.map-section {
  background: var(--eucalyptus);
}
.map-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.map-visual {
  position: relative;
}
.map-visual img {
  height: 600px;
  object-fit: cover;
  border-radius: 28px;
}
.map-marker {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.8);
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.map-marker.active {
  transform: scale(1.25);
  background: var(--teal);
}
.marker-qld {
  right: 11%;
  top: 29%;
}
.marker-sa {
  right: 35%;
  bottom: 15%;
}
.marker-wa {
  left: 19%;
  top: 47%;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.category-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.category-links a {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.category-links i {
  width: 28px;
  color: var(--terracotta);
}
.experience-collage {
  position: relative;
  padding-bottom: 90px;
}
.experience-collage > img {
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
}
.experience-collage > div {
  position: absolute;
  width: 55%;
  right: -35px;
  bottom: 0;
  border: 10px solid var(--limestone);
  border-radius: 24px;
  overflow: hidden;
}
.experience-collage > div img {
  height: 280px;
  object-fit: cover;
}
.journal-section {
  background: var(--cream);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journal-grid article img {
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
.journal-grid article span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--terracotta);
}
.journal-grid article h3 {
  font-size: 30px;
  margin-top: 10px;
}
.journal-grid article a {
  font-weight: 700;
  border-bottom: 1px solid;
}
.newsletter-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 30px;
  padding: 60px;
}
.newsletter-card .eyebrow {
  color: #f8d7ca;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(41, 39, 36, 0.25);
  background: #fff;
  padding: 14px 15px;
  border-radius: 10px;
  color: var(--charcoal);
}
.newsletter-card input,
.newsletter-card select {
  background: rgba(255, 255, 255, 0.95);
}
.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
}
.check input {
  width: 18px !important;
  height: 18px;
  margin-top: 4px;
}
.form-message {
  font-size: 13px;
  margin-top: 12px;
}
.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, var(--cream), var(--eucalyptus));
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.breadcrumb {
  display: flex;
  gap: 9px;
  font-size: 12px;
  margin-bottom: 30px;
}
.breadcrumb a {
  border-bottom: 1px solid;
}
.page-hero-images {
  position: relative;
}
.page-hero-images > .hero-main-image {
  height: 610px;
  border-radius: 140px 28px 28px 28px;
}
.page-hero-images > div {
  position: absolute;
  width: 42%;
  left: -12%;
  bottom: -35px;
  border: 10px solid var(--limestone);
  border-radius: 22px;
  overflow: hidden;
}
.page-hero-images > div img {
  height: 240px;
  object-fit: cover;
}
.page-hero-images > span {
  position: absolute;
  right: -15px;
  top: 15px;
  font: 90px "DM Serif Display";
  color: rgba(184, 95, 70, 0.32);
}
.approach-section {
  background: var(--cream);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.approach-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.approach-card span {
  color: var(--terracotta);
  font-size: 12px;
}
.approach-card h3 {
  font-size: 25px;
  margin-top: 18px;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.story-grid > div:first-child {
  position: sticky;
  top: 100px;
  height: max-content;
}
.story-grid img {
  height: 760px;
  object-fit: cover;
  border-radius: 28px;
}
.timeline {
  border-left: 1px solid var(--line);
  margin: 35px 0;
  padding-left: 30px;
}
.timeline > div {
  position: relative;
  padding: 0 0 28px;
}
.timeline b {
  position: absolute;
  left: -53px;
  top: 0;
  background: var(--limestone);
  color: var(--terracotta);
  font-size: 11px;
}
.timeline h3 {
  font-size: 25px;
  margin-bottom: 8px;
}
.two-col-text {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.reviews-section {
  background: var(--eucalyptus);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-grid article {
  background: var(--cream);
  padding: 30px;
  border-radius: 20px;
}
.review-grid h3 {
  font-size: 28px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.review-grid span {
  font-size: 12px;
}
.stars {
  letter-spacing: 0.12em;
  color: var(--terracotta);
}
.bright-cta {
  text-align: center;
  background: var(--coral);
}
.bright-cta h2 {
  max-width: 900px;
  margin: 0 auto 35px;
}
.bright-cta .btn {
  margin: 5px;
}
.hotel-hero {
  padding: 145px 0 75px;
  background: linear-gradient(135deg, var(--cream), var(--eucalyptus));
}
.hotel-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: center;
}
.hotel-hero-image {
  position: relative;
}
.hotel-hero-image > img {
  height: 660px;
  object-fit: cover;
  border-radius: 140px 28px 28px 28px;
}
.quick-facts {
  position: absolute;
  left: -55px;
  bottom: 35px;
  background: var(--cream);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 310px;
}
.quick-facts p {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--teal);
}
.quick-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-facts li {
  font-size: 13px;
  margin: 8px 0;
}
.quick-facts i {
  color: var(--terracotta);
  margin-right: 10px;
}
.hotel-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hotel-content-grid.reverse > .hotel-gallery {
  order: 1;
}
.hotel-content-grid.reverse > .hotel-text {
  order: 2;
}
.hotel-gallery {
  position: sticky;
  top: 100px;
}
.hotel-gallery > img {
  height: 680px;
  object-fit: cover;
  border-radius: 28px;
}
.hotel-gallery > div:not(.risk-card) {
  width: 60%;
  margin: -95px -35px 0 auto;
  border: 10px solid var(--limestone);
  border-radius: 22px;
  overflow: hidden;
}
.hotel-gallery > div img {
  height: 280px;
  object-fit: cover;
}
.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.facility-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
}
.casino-section {
  background: var(--teal);
  color: #fff;
}
.casino-section .eyebrow,
.casino-section .section-number {
  color: #f4bfaa;
}
.casino-section .hotel-gallery > div:not(.risk-card) {
  border-color: var(--teal);
}
.risk-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 22px;
  border-radius: 16px;
  width: min(360px, calc(100% - 50px));
}
.risk-card strong {
  font: 30px "DM Serif Display";
  color: var(--terracotta);
}
.risk-card p {
  font-size: 12px;
  margin: 5px 0;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icon-grid article {
  background: var(--cream);
  padding: 30px;
  border-radius: 20px;
}
.icon-grid i {
  font-size: 27px;
  color: var(--terracotta);
}
.icon-grid h3 {
  font-size: 25px;
  margin: 18px 0 8px;
}
.hotel-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hotel-package-grid article {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 22px;
  background: var(--cream);
}
.hotel-package-grid span {
  color: var(--terracotta);
  font-weight: 700;
}
.small-note {
  font-size: 12px;
  margin-top: 20px;
}
.practical-section {
  background: var(--eucalyptus);
}
.practical-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.practical-grid address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}
.practical-grid address strong {
  font: 28px "DM Serif Display";
}
.map-frame iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 28px;
}
.responsible-cta {
  background: var(--terracotta);
  color: #fff;
}
.responsible-cta .container {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.responsible-cta strong {
  font: 60px "DM Serif Display";
}
.responsible-cta h2 {
  font-size: 38px;
}
.responsible-cta p {
  margin: 0;
}
.contact-card {
  background: var(--cream) !important;
  padding: 24px !important;
  display: flex;
  flex-direction: column;
  border: 0 !important;
}
.contact-hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-hotel-grid article {
  background: var(--cream);
  padding: 30px;
  border-radius: 20px;
}
.contact-hotel-grid span {
  color: var(--terracotta);
}
.contact-hotel-grid a {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}
.contact-form-section {
  background: var(--eucalyptus);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 75px;
  align-items: start;
}
.contact-layout form {
  background: var(--cream);
  padding: 40px;
  border-radius: 24px;
}
.success-card:not(:empty) {
  background: #e1eedf;
  color: #204323;
  padding: 16px;
  border-radius: 10px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 75px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s;
}
.faq-answer p {
  overflow: hidden;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.legal-hero {
  padding: 160px 0 75px;
  background: linear-gradient(135deg, var(--cream), var(--eucalyptus));
}
.last-updated {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
}
.legal-toc {
  position: sticky;
  top: 95px;
  height: max-content;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.legal-toc strong {
  margin-bottom: 13px;
}
.legal-toc a {
  font-size: 12px;
  padding: 6px 0;
}
.legal-copy {
  max-width: 850px;
}
.legal-copy section {
  scroll-margin-top: 100px;
  margin-bottom: 48px;
}
.legal-copy section h2 {
  font-size: 34px;
}
.legal-highlight {
  background: var(--eucalyptus);
  padding: 28px;
  border-radius: 18px;
  margin-bottom: 36px;
}
.legal-highlight strong {
  font: 28px "DM Serif Display";
}
.legal-page .table-wrap table {
  background: var(--teal);
  color: #fff;
  margin-bottom: 40px;
}
.risk-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}
.risk-panels strong {
  background: var(--terracotta);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
}
.site-footer {
  background: #ead4bd;
  padding: 85px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 1fr 0.8fr;
  gap: 55px;
}
.footer-grid h3 {
  font: 700 12px Manrope;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-grid > div > a,
.footer-link {
  display: block;
  margin: 10px 0;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.footer-grid p {
  font-size: 13px;
  max-width: 360px;
}
.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}
.footer-badges span {
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
}
.footer-badges strong {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: #fff;
}
.footer-middle {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: end;
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 35px;
}
.mini-newsletter label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
}
.mini-newsletter > div {
  display: flex;
  border-bottom: 1px solid var(--charcoal);
}
.mini-newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 0;
}
.mini-newsletter button {
  border: 0;
  background: none;
}
.responsible-strip {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 35px;
}
.responsible-strip p {
  font-size: 12px;
  margin: 0;
}
.responsible-strip i {
  color: var(--terracotta);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding-top: 22px;
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--teal);
  color: #fff;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.cookie-banner {
  position: fixed;
  z-index: 1600;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--cream);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  transform: translateY(150%);
  transition: 0.4s;
}
.cookie-banner.show {
  transform: none;
}
.cookie-banner p {
  font-size: 13px;
  margin: 5px 0;
}
.cookie-banner a {
  font-size: 12px;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 21, 0.42);
  z-index: 1690;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.cookie-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  width: min(520px, 100%);
  background: var(--cream);
  z-index: 1700;
  padding: 52px 38px 30px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: 0.35s;
}
.cookie-drawer.open {
  transform: none;
}
.drawer-close {
  position: absolute;
  right: 22px;
  top: 20px;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cookie-row h3 {
  font: 700 15px Manrope;
  margin-bottom: 5px;
}
.cookie-row p {
  font-size: 12px;
  margin: 0;
}
.switch {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.switch input {
  position: absolute;
  opacity: 0;
}
.switch span {
  display: block;
  width: 48px;
  height: 26px;
  background: #aaa;
  border-radius: 999px;
  position: relative;
}
.switch span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: 0.2s;
}
.switch input:checked + span {
  background: var(--teal);
}
.switch input:checked + span:after {
  transform: translateX(22px);
}
.switch em {
  font-size: 10px;
  font-style: normal;
}
.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  border: 0;
  background: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.nav-dropdown > button i {
  font-size: 9px;
  margin-left: 4px;
  transition: 0.25s;
}
.nav-dropdown.open > button i {
  transform: rotate(180deg);
}
.hotel-mega {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  width: 720px;
  transform: translate(-50%, 12px);
  background: var(--cream);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.nav-dropdown.open .hotel-mega,
.nav-dropdown:hover .hotel-mega,
.nav-dropdown:focus-within .hotel-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.hotel-mega > a {
  padding: 10px;
  border-radius: 14px;
}
.hotel-mega > a:hover {
  background: var(--eucalyptus);
}
.hotel-mega > a:after {
  display: none;
}
.mega-thumb {
  height: 92px;
  border-radius: 12px;
  display: block;
  margin-bottom: 11px;
  background-size: cover;
  background-position: center;
}
.azure-thumb {
  background-image: url("../images/azure-bay-card.webp");
}
.copper-thumb {
  background-image: url("../images/copper-ridge-card.webp");
}
.pacific-thumb {
  background-image: url("../images/pacific-palm-card.webp");
}
.hotel-mega b,
.hotel-mega small,
.hotel-mega em {
  display: block;
}
.hotel-mega b {
  font-family: "DM Serif Display";
  font-size: 18px;
  line-height: 1.15;
}
.hotel-mega small {
  color: var(--teal);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 5px 0;
}
.hotel-mega em {
  font-style: normal;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 400;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.guide-steps article {
  background: var(--cream);
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
}
.guide-steps article > span {
  color: var(--terracotta);
  font-weight: 700;
}
.guide-steps h3 {
  font-size: 28px;
  margin-top: 14px;
}
@media (max-width: 1150px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-split,
  .page-hero-grid,
  .hotel-hero-grid {
    gap: 45px;
  }
  .quick-facts {
    left: -20px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/-1;
  }
  .responsible-cta .container {
    grid-template-columns: 0.7fr 1.3fr;
  }
  .responsible-cta .btn {
    grid-column: 1/-1;
    width: max-content;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }
  .hero-split,
  .asym-grid,
  .map-layout,
  .experience-grid,
  .page-hero-grid,
  .story-grid,
  .two-col-text,
  .hotel-hero-grid,
  .hotel-content-grid,
  .practical-grid,
  .contact-layout,
  .faq-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .home-hero {
    padding-top: 125px;
  }
  .hero-visual {
    min-height: 550px;
  }
  .hero-main-image {
    height: 550px;
  }
  .image-stack,
  .story-grid > div:first-child,
  .hotel-gallery,
  .legal-toc {
    position: relative;
    top: auto;
  }
  .portrait-image,
  .story-grid img {
    height: 550px;
  }
  .entry-one,
  .entry-two {
    grid-template-columns: 1fr;
  }
  .entry-two > div:first-child {
    order: 2;
  }
  .floating-card {
    width: 75%;
    margin: -180px 25px 0 auto;
  }
  .package-grid,
  .journal-grid,
  .review-grid,
  .hotel-package-grid,
  .contact-hotel-grid,
  .guide-steps {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .hotel-gallery > img {
    height: 560px;
  }
  .hotel-content-grid.reverse > .hotel-gallery,
  .hotel-content-grid.reverse > .hotel-text {
    order: initial;
  }
  .practical-grid {
    gap: 35px;
  }
  .legal-toc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
  .legal-grid {
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-middle {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1220px);
  }
  :root {
    --header-h: 68px;
  }
  h1 {
    font-size: clamp(39px, 12vw, 44px);
  }
  h2 {
    font-size: clamp(34px, 10vw, 42px);
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .section-number {
    font-size: 44px;
  }
  .header-inner {
    width: calc(100% - 24px);
  }
  .geo-label {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .home-hero {
    min-height: auto;
    padding-top: 105px;
  }
  .hero-split {
    gap: 45px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-main-image {
    height: 430px;
    border-radius: 90px 20px 20px 20px;
  }
  .hero-small {
    left: -1%;
    width: 48%;
    border-width: 6px;
  }
  .hero-small img {
    height: 145px;
  }
  .location-card {
    right: 5px;
    top: 18px;
    width: 120px;
  }
  .location-card strong {
    font-size: 45px;
  }
  .rotating-line {
    flex-direction: column;
  }
  .offset-image {
    margin: -65px 0 0 -4px;
  }
  .stat-grid,
  .package-grid,
  .journal-grid,
  .review-grid,
  .hotel-package-grid,
  .contact-hotel-grid,
  .icon-grid,
  .approach-grid,
  .risk-panels,
  .guide-steps {
    grid-template-columns: 1fr;
  }
  .hotel-entry {
    margin: 70px 0;
  }
  .entry-one img,
  .collage > img,
  .wide-image img {
    height: 430px;
  }
  .collage {
    padding-right: 0;
  }
  .collage > div {
    width: 48%;
    right: -4px;
    bottom: -35px;
    border-width: 6px;
  }
  .collage > div img {
    height: 180px;
  }
  .floating-card {
    width: calc(100% - 24px);
    margin: -90px auto 0;
    padding: 28px;
  }
  .map-visual img,
  .experience-collage > img {
    height: 440px;
  }
  .experience-collage > div {
    right: -4px;
    border-width: 6px;
  }
  .category-links {
    grid-template-columns: 1fr;
  }
  .newsletter-card {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .page-hero {
    padding-top: 110px;
  }
  .page-hero-images > .hero-main-image {
    height: 430px;
    border-radius: 90px 20px 20px 20px;
  }
  .page-hero-images > div {
    left: 0;
    width: 48%;
    border-width: 6px;
  }
  .page-hero-images > div img {
    height: 160px;
  }
  .story-grid img {
    height: 480px;
  }
  .hotel-hero {
    padding-top: 110px;
  }
  .hotel-hero-image > img {
    height: 480px;
    border-radius: 90px 20px 20px 20px;
  }
  .quick-facts {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -65px auto 0;
  }
  .hotel-gallery > img {
    height: 470px;
  }
  .hotel-gallery > div:not(.risk-card) {
    border-width: 6px;
    margin-top: -60px;
  }
  .hotel-gallery > div img {
    height: 190px;
  }
  .responsible-cta .container {
    grid-template-columns: 1fr;
  }
  .map-frame iframe {
    height: 430px;
  }
  .contact-layout form {
    padding: 25px 18px;
  }
  .legal-hero {
    padding-top: 115px;
  }
  .legal-toc {
    grid-template-columns: 1fr;
  }
  .legal-copy section h2 {
    font-size: 30px;
  }
  .footer-grid,
  .footer-middle {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:last-child,
  .footer-middle > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions .text-button {
    text-align: center;
  }
  .cookie-drawer {
    padding: 50px 20px 25px;
  }
  .cookie-row {
    grid-template-columns: 1fr;
  }
  .switch {
    align-items: flex-start;
  }
  .responsible-strip {
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
