

/* =========================================================
   GLOBAL SETTINGS
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 76px 0 0;

  background: #071018;
  color: #17202a;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.6;

  text-align: left;
  overflow-x: hidden;
}

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

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

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

section {
  width: 100%;
  margin: 0;
}

#casino,
#games,
#visit,
#dining,
#resort,
#faq {
  scroll-margin-top: 76px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;
  height: 76px;
  margin: 0;
  padding: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8, 14, 20, 0.99) 0%,
      rgba(5, 10, 15, 0.99) 100%
    );

  border: 0;
  border-bottom: 1px solid rgba(215, 182, 104, 0.6);

  box-shadow:
    0 10px 32px rgba(4, 10, 16, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
}

.header-inner {
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;

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


/* =========================================================
   LOGO
   ========================================================= */

.logo {
  flex: 0 0 auto;
  width: 230px;
  margin: 0;
  padding: 0;
}

.logo img {
  display: block;

  width: 100%;
  max-width: 230px;
  height: auto;
  max-height: 54px;

  object-fit: contain;
  object-position: left center;

  filter:
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.3));
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {
  flex: 1 1 auto;

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

  margin: 0;
  padding: 0;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.main-navigation li {
  margin: 0;
  padding: 0;
}

.main-navigation a {
  position: relative;

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

  padding: 12px 14px;

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

  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.main-navigation a::before {
  content: "";

  position: absolute;
  inset: 5px 7px;

  z-index: -1;

  border: 1px solid transparent;
  border-radius: 4px;

  background: rgba(215, 182, 104, 0);

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.main-navigation a::after {
  content: "";

  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #e0c171,
      transparent
    );

  opacity: 0;
  transform: scaleX(0.35);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: #e4c776;
  transform: translateY(-1px);
}

.main-navigation a:hover::before,
.main-navigation a.active::before {
  border-color: rgba(215, 182, 104, 0.12);
  background: rgba(215, 182, 104, 0.055);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  opacity: 1;
  transform: scaleX(1);
}


/* =========================================================
   PLAY NOW BUTTONS
   ========================================================= */

.btn-play-now,
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: 136px;
  min-height: 42px;
  padding: 11px 22px;

  border: 1px solid rgba(237, 207, 133, 0.9);
  border-radius: 5px;

  background:
    linear-gradient(
      135deg,
      #dfc16e 0%,
      #c39a43 52%,
      #9b7128 100%
    );

  color: #071018;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  box-shadow:
    0 8px 22px rgba(103, 73, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn-play-now:hover,
.hero-btn-primary:hover {
  color: #071018;

  border-color: rgba(249, 224, 161, 1);

  background:
    linear-gradient(
      135deg,
      #efd788 0%,
      #d0ab54 52%,
      #ad8030 100%
    );

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(103, 73, 22, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-play-now:focus-visible,
.hero-btn-primary:focus-visible,
.main-navigation a:focus-visible {
  outline: 2px solid #efd788;
  outline-offset: 4px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-banner {
  position: relative;

  width: 100%;
  min-height: calc(100vh - 76px);
  margin: 0;
  padding: 44px 0 38px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-color: #b9d1dc;
  background-image:
    url("../../images/slider/hobart-casino-hero.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  color: #ffffff;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-banner::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 22, 0.91) 0%,
      rgba(5, 17, 26, 0.83) 22%,
      rgba(6, 20, 30, 0.65) 40%,
      rgba(7, 24, 35, 0.3) 59%,
      rgba(8, 25, 37, 0.04) 80%,
      rgba(8, 25, 37, 0) 100%
    );
}

.hero-banner::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(222, 190, 112, 0.75),
      transparent
    );
}

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

  background:
    linear-gradient(
      180deg,
      rgba(2, 8, 13, 0.06) 0%,
      transparent 45%,
      rgba(2, 8, 13, 0.16) 100%
    );

  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: 1;

  border-radius: 50%;

  pointer-events: none;
}

.hero-glow-left {
  top: 8%;
  left: -12%;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(225, 192, 112, 0.12) 0%,
      rgba(225, 192, 112, 0) 70%
    );
}

.hero-glow-right {
  right: 8%;
  bottom: -30%;

  width: 420px;
  height: 420px;

  background:
    radial-gradient(
      circle,
      rgba(255, 239, 197, 0.08) 0%,
      rgba(255, 239, 197, 0) 72%
    );
}


/* =========================================================
   HERO LAYOUT
   ========================================================= */

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-content {
  width: min(720px, 100%);
  margin: 0;

  color: #ffffff;
  text-align: left;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 20px;
  padding: 9px 14px;

  border: 1px solid rgba(224, 193, 113, 0.68);
  border-radius: 4px;

  background: rgba(5, 17, 25, 0.46);

  color: #e8cb7e;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-content h1 {
  margin: 0 0 18px;
  padding: 0;

  color: #ffffff;

  font-size: clamp(52px, 5vw, 76px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: none;

  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-content h1::after {
  content: "";

  display: block;

  width: 76px;
  height: 2px;
  margin-top: 20px;

  background:
    linear-gradient(
      90deg,
      #e3c473 0%,
      rgba(227, 196, 115, 0) 100%
    );
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-lead {
  max-width: 680px;
  margin: 0;

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

  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.hero-features {
  width: 100%;
  margin: 28px 0 0;

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

.hero-feature {
  min-width: 0;
  min-height: 154px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border: 1px solid rgba(224, 192, 111, 0.4);
  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      rgba(5, 16, 24, 0.76) 0%,
      rgba(6, 18, 27, 0.56) 100%
    );

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero-feature:hover {
  border-color: rgba(237, 207, 132, 0.7);

  background:
    linear-gradient(
      145deg,
      rgba(6, 19, 28, 0.84) 0%,
      rgba(7, 21, 31, 0.66) 100%
    );

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  transform: translateY(-3px);
}

.hero-feature-icon {
  width: 38px;
  height: 38px;
  margin: 0 0 14px;

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

  color: #e4c574;
}

.hero-feature-icon svg {
  display: block;

  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
}

.hero-feature-text {
  width: 100%;
}

.hero-feature strong {
  display: block;
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.hero-feature p {
  margin: 0;

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

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


/* =========================================================
   HERO ACTION
   ========================================================= */

.hero-actions {
  margin: 24px 0 0;

  display: flex;
  align-items: center;
}

.hero-btn-primary {
  min-width: 142px;
}


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

@media (max-width: 1180px) {
  .header-inner,
  .hero-inner {
    width: min(1120px, calc(100% - 40px));
  }

  .logo {
    width: 190px;
  }

  .logo img {
    max-width: 190px;
  }

  .main-navigation a {
    padding-right: 9px;
    padding-left: 9px;

    font-size: 11px;
    letter-spacing: 0.075em;
  }

  .btn-play-now {
    min-width: 120px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-content {
    width: min(660px, 64%);
  }

  .hero-content h1 {
    font-size: clamp(48px, 5.5vw, 68px);
  }
}


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

@media (max-width: 900px) {
  body {
    padding-top: 68px;
  }

  #casino,
  #games,
  #visit,
  #dining,
  #resort,
  #faq {
    scroll-margin-top: 68px;
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    width: calc(100% - 32px);
    gap: 18px;
  }

  .logo {
    width: 180px;
  }

  .logo img {
    max-width: 180px;
    max-height: 46px;
  }

  .main-navigation {
    display: none;
  }

  .btn-play-now {
    min-width: 114px;
    min-height: 38px;
    padding: 10px 15px;

    font-size: 11px;
  }

  .hero-banner {
    min-height: calc(100vh - 68px);
    padding: 42px 0 36px;

    background-position: 63% center;
  }

  .hero-inner {
    width: calc(100% - 40px);
  }

  .hero-content {
    width: min(650px, 100%);
  }

  .hero-banner::before {
    background:
      linear-gradient(
        90deg,
        rgba(4, 14, 22, 0.92) 0%,
        rgba(5, 17, 26, 0.82) 48%,
        rgba(7, 22, 33, 0.38) 100%
      );
  }
}


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

@media (max-width: 680px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .logo {
    width: 148px;
  }

  .logo img {
    max-width: 148px;
    max-height: 42px;
  }

  .btn-play-now {
    min-width: 102px;
    min-height: 36px;
    padding: 9px 13px;

    font-size: 10px;
  }

  .hero-banner {
    min-height: auto;
    padding: 44px 0 38px;

    background-position: 68% center;
  }

  .hero-banner::before {
    background:
      linear-gradient(
        90deg,
        rgba(4, 14, 22, 0.95) 0%,
        rgba(5, 17, 26, 0.89) 60%,
        rgba(7, 22, 33, 0.65) 100%
      );
  }

  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero-content {
    width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 17px;
    padding: 8px 10px;

    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.11em;
  }

  .hero-content h1 {
    margin-bottom: 16px;

    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .hero-content h1::after {
    margin-top: 16px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-features {
    margin-top: 24px;

    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-feature {
    min-height: auto;
    padding: 15px;

    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    column-gap: 13px;
  }

  .hero-feature-icon {
    margin: 0;
  }

  .hero-feature strong {
    font-size: 14px;
  }

  .hero-feature p {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-btn-primary {
    min-width: 126px;
    min-height: 40px;

    font-size: 11px;
  }
}


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

@media (max-width: 380px) {
  .logo {
    width: 132px;
  }

  .logo img {
    max-width: 132px;
  }

  .btn-play-now {
    min-width: 94px;
    padding-right: 10px;
    padding-left: 10px;

    font-size: 9px;
  }

  .hero-inner {
    width: calc(100% - 22px);
  }

  .hero-content h1 {
    font-size: 40px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   SITE-WIDE VISUAL RHYTHM — REVERSIBLE OVERRIDE
   Remove this block to restore the previous section styling.
   ========================================================= */

:root {
  --hobart-mist: #e8eeeb;
  --hobart-mist-warm: #f2efe7;
  --hobart-brass: #c7a45b;
}

.casino-content {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.56), transparent 46%),
    radial-gradient(circle at 92% 12%, rgba(188, 147, 67, 0.13), transparent 28%),
    #f1eee6;
}

.casino-area-card {
  border-radius: 2px 24px 2px 24px;
}

.games-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 210px),
    radial-gradient(circle at 8% 30%, rgba(48, 106, 119, 0.11), transparent 30%),
    radial-gradient(circle at 94% 74%, rgba(178, 139, 63, 0.09), transparent 25%),
    var(--hobart-mist);
}

.games-section::before {
  height: 7px;
  background:
    linear-gradient(
      90deg,
      #d8e2df 0%,
      #5e8992 32%,
      var(--hobart-brass) 50%,
      #5e8992 68%,
      #d8e2df 100%
    );
  opacity: 0.7;
}

.game-variation {
  border-color: rgba(47, 91, 99, 0.19);
  border-radius: 2px 18px 2px 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.79),
      rgba(231, 239, 236, 0.72)
    );
  box-shadow: 0 14px 34px rgba(23, 51, 57, 0.07);
}

.visit-section {
  background:
    radial-gradient(circle at 7% 8%, rgba(209, 166, 83, 0.18), transparent 28%),
    radial-gradient(circle at 93% 82%, rgba(117, 75, 58, 0.24), transparent 34%),
    linear-gradient(145deg, #1b1516 0%, #30201d 52%, #171417 100%);
}

.visit-section::after {
  border-color: rgba(226, 190, 111, 0.11);
  box-shadow:
    0 0 0 46px rgba(218, 184, 101, 0.032),
    0 0 0 92px rgba(218, 184, 101, 0.022);
}

.visit-card {
  border-color: rgba(224, 190, 113, 0.25);
  border-radius: 2px 22px 2px 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 247, 232, 0.09),
      rgba(255, 255, 255, 0.025)
    );
}

.dining-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 160, 75, 0.15), transparent 27%),
    radial-gradient(circle at 92% 72%, rgba(51, 133, 140, 0.22), transparent 34%),
    linear-gradient(145deg, #07151c 0%, #0b2c34 50%, #071820 100%);
}

.resort-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(100, 164, 169, 0.19), transparent 31%),
    radial-gradient(circle at 92% 43%, rgba(82, 130, 153, 0.2), transparent 28%),
    linear-gradient(
      180deg,
      #102f38 0%,
      #16434e 24%,
      #123844 54%,
      #0d2b35 80%,
      #091c25 100%
    );
}

.resort-landmark,
.resort-stay-copy,
.resort-experience-copy {
  border-radius: 2px 24px 2px 24px;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 220px),
    radial-gradient(circle at 12% 24%, rgba(93, 127, 127, 0.13), transparent 30%),
    radial-gradient(circle at 91% 76%, rgba(143, 105, 55, 0.13), transparent 31%),
    var(--hobart-mist-warm);
}

.faq-item {
  border-radius: 2px 18px 2px 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(52, 119, 122, 0.15), transparent 29%),
    radial-gradient(circle at 92% 75%, rgba(177, 137, 57, 0.11), transparent 28%),
    linear-gradient(145deg, #050e13 0%, #071a21 48%, #040c11 100%);
}

@media (max-width: 1180px) {
  .faq-container {
    width: min(calc(100% - 56px), 1120px);
  }
}

@media (max-width: 920px) {
  .footer-container {
    width: min(calc(100% - 44px), 840px);
  }
}

/* =========================================================
   CASINO AND GAMES — FINAL COLOUR CORRECTION
   ========================================================= */

.casino-content {
  color: #f3eee4;
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 145, 65, 0.15), transparent 28%),
    radial-gradient(circle at 4% 88%, rgba(92, 54, 43, 0.2), transparent 32%),
    linear-gradient(145deg, #171416 0%, #231a19 48%, #10171b 100%);
}

.casino-area-card,
.casino-gaming-highlight,
.casino-rewards-card {
  border-color: rgba(213, 174, 92, 0.25);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.085), rgba(255, 255, 255, 0.025));
}

.casino-advantage {
  border-color: rgba(208, 169, 86, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.games-section {
  color: #eef3f1;
  background:
    radial-gradient(circle at 8% 9%, rgba(72, 133, 140, 0.19), transparent 29%),
    radial-gradient(circle at 94% 69%, rgba(183, 139, 61, 0.11), transparent 27%),
    linear-gradient(145deg, #13282f 0%, #19343b 46%, #10242b 100%);
}

.games-section::before {
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(210, 174, 92, 0.7), transparent);
  opacity: 0.72;
}

.game-variation,
.featured-game-card,
.gaming-hours-table {
  border-color: rgba(205, 168, 88, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 220px),
    radial-gradient(circle at 12% 24%, rgba(50, 91, 94, 0.13), transparent 30%),
    radial-gradient(circle at 91% 76%, rgba(115, 84, 48, 0.12), transparent 31%),
    #d7d7cf;
}

/* =========================================================
   DARK CONTINUITY — CASINO, GAMES AND FAQ
   ========================================================= */

.casino-content {
  color: #f3eee4;
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 145, 65, 0.15), transparent 28%),
    radial-gradient(circle at 4% 88%, rgba(92, 54, 43, 0.2), transparent 32%),
    linear-gradient(145deg, #171416 0%, #231a19 48%, #10171b 100%);
}

.casino-content::before {
  background:
    radial-gradient(circle, rgba(202, 161, 79, 0.1), transparent 70%);
}

.casino-content-header h3,
.casino-gaming-copy h3,
.casino-area-card h4,
.casino-advantage h4,
.casino-rewards-card h4 {
  color: #fff7e9;
}

.casino-content-header > p:last-child,
.casino-area-card p:not(.casino-card-label),
.casino-advantage p,
.casino-gaming-copy p,
.casino-rewards-card p:last-child {
  color: rgba(236, 237, 233, 0.68);
}

.casino-area-card {
  border-color: rgba(213, 174, 92, 0.25);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 235, 0.085),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.casino-area-card:hover {
  border-color: rgba(225, 188, 106, 0.48);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.casino-card-icon {
  border-color: rgba(211, 171, 87, 0.35);
  background:
    linear-gradient(145deg, rgba(225, 192, 119, 0.16), rgba(255, 255, 255, 0.03));
  color: #dabb70;
  box-shadow: none;
}

.casino-area-card li {
  border-color: rgba(226, 232, 229, 0.09);
  color: rgba(238, 239, 235, 0.73);
}

.casino-advantage {
  border-color: rgba(208, 169, 86, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.casino-advantage:hover {
  border-color: rgba(218, 180, 98, 0.4);
  background: rgba(255, 255, 255, 0.065);
}

.casino-gaming-highlight,
.casino-rewards-card {
  border-color: rgba(215, 179, 99, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.075), rgba(255, 255, 255, 0.025));
}

.games-section {
  color: #eef3f1;
  background:
    radial-gradient(circle at 8% 9%, rgba(72, 133, 140, 0.19), transparent 29%),
    radial-gradient(circle at 94% 69%, rgba(183, 139, 61, 0.11), transparent 27%),
    linear-gradient(145deg, #13282f 0%, #19343b 46%, #10242b 100%);
}

.games-section::before {
  height: 1px;
  opacity: 0.72;
}

.games-intro h2,
.game-story-content h3,
.featured-games-header h3,
.featured-game-content h4,
.gaming-hours-heading h3,
.game-variation h4 {
  color: #fff8ea;
}

.games-intro-copy > p:not(.games-section-label),
.game-story-content > p:not(.game-story-label),
.featured-games-header > p:last-child,
.featured-game-content > p:not(.game-story-label),
.gaming-hours-heading p:last-child,
.game-variation p {
  color: rgba(227, 236, 234, 0.68);
}

.games-intro-copy .games-intro-lead,
.game-story-content .game-story-lead {
  color: rgba(250, 244, 232, 0.9);
}

.games-intro-visual figcaption,
.game-story-visual figcaption,
.more-games-visual figcaption {
  color: rgba(220, 230, 228, 0.48);
}

.games-image-frame {
  border-color: rgba(207, 169, 88, 0.34);
  background: #0d2027;
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.28),
    0 7px 18px rgba(0, 0, 0, 0.15);
}

.game-variation,
.featured-game-card,
.gaming-hours-table {
  border-color: rgba(205, 168, 88, 0.22);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.featured-game-card:hover {
  border-color: rgba(218, 181, 101, 0.42);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.game-mood span {
  border-color: rgba(210, 172, 91, 0.3);
  background: rgba(255, 255, 255, 0.045);
  color: #dfc17d;
}

.gaming-hours-row {
  border-color: rgba(229, 235, 232, 0.09);
}

.gaming-hours-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.gaming-hours-row span {
  color: rgba(245, 244, 238, 0.88);
}

.gaming-hours-row strong {
  color: rgba(221, 231, 229, 0.56);
}

.gaming-hours-row time {
  color: #dfbd70;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 220px),
    radial-gradient(circle at 12% 24%, rgba(50, 91, 94, 0.13), transparent 30%),
    radial-gradient(circle at 91% 76%, rgba(115, 84, 48, 0.12), transparent 31%),
    #d7d7cf;
}

/* =========================================================
   CASINO SECTION
   ========================================================= */

.casino-section {
  position: relative;

  width: 100%;

  background: #f4f0e8;
  color: #17212a;

  overflow: hidden;
}

.casino-container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}


/* =========================================================
   CASINO INTRO
   ========================================================= */

.casino-intro {
  position: relative;

  min-height: 640px;
  padding: 92px 0;

  display: flex;
  align-items: center;

  background-color: #16222a;
  background-image:
    url("../../images/banners/hobart-casino-interior.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  color: #ffffff;

  overflow: hidden;
}

.casino-intro::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(224, 193, 113, 0.85),
      transparent
    );
}

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

  background:
    linear-gradient(
      90deg,
      rgba(6, 15, 22, 0.96) 0%,
      rgba(7, 17, 24, 0.91) 29%,
      rgba(8, 20, 28, 0.73) 45%,
      rgba(10, 24, 33, 0.26) 65%,
      rgba(10, 24, 33, 0.04) 100%
    );
}

.casino-intro .casino-container {
  position: relative;
  z-index: 2;
}

.casino-intro-content {
  width: min(640px, 55%);

  text-align: left;
}

.casino-eyebrow,
.section-label,
.casino-card-label {
  margin: 0;

  color: #b68b38;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.casino-intro .casino-eyebrow {
  display: inline-flex;

  margin-bottom: 22px;
  padding: 9px 13px;

  border: 1px solid rgba(228, 197, 119, 0.65);
  border-radius: 4px;

  background: rgba(6, 17, 24, 0.44);

  color: #e7ca7d;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.casino-intro h2 {
  margin: 0 0 24px;

  color: #ffffff;

  font-size: clamp(43px, 4.4vw, 68px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.casino-intro h2::after {
  content: "";

  display: block;

  width: 82px;
  height: 2px;
  margin-top: 22px;

  background:
    linear-gradient(
      90deg,
      #e4c575,
      rgba(228, 197, 117, 0)
    );
}

.casino-intro-content > p:not(.casino-eyebrow) {
  max-width: 620px;
  margin: 0 0 18px;

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

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

.casino-intro-content .casino-intro-lead {
  color: rgba(255, 255, 255, 0.95);

  font-size: 19px;
  font-weight: 450;
  line-height: 1.65;
}


/* =========================================================
   CASINO KEY FACTS
   ========================================================= */

.casino-key-facts {
  margin-top: 34px;

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

.casino-key-fact {
  min-width: 0;
  padding: 16px;

  border: 1px solid rgba(228, 197, 117, 0.35);
  border-radius: 6px;

  background: rgba(5, 15, 22, 0.6);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.casino-key-fact strong {
  display: block;
  margin-bottom: 5px;

  color: #e7ca7d;

  font-size: 19px;
  font-weight: 750;
  line-height: 1.2;
}

.casino-key-fact span {
  display: block;

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

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


/* =========================================================
   CASINO CONTENT
   ========================================================= */

.casino-content {
  position: relative;

  padding: 96px 0 108px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(211, 176, 91, 0.12),
      transparent 31%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(44, 99, 108, 0.08),
      transparent 32%
    ),
    #f4f0e8;
}

.casino-content::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 440px;
  height: 440px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(210, 176, 93, 0.12),
      transparent 70%
    );

  pointer-events: none;
}

.casino-content-header {
  max-width: 820px;
  margin: 0 auto 54px;

  text-align: center;
}

.casino-content-header .section-label {
  margin-bottom: 12px;
}

.casino-content-header h3,
.casino-gaming-copy h3 {
  margin: 0;

  color: #12202a;

  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.casino-content-header h3::after {
  content: "";

  display: block;

  width: 70px;
  height: 2px;
  margin: 20px auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      #bd9141,
      transparent
    );
}

.casino-content-header > p:last-child {
  max-width: 740px;
  margin: 0 auto;

  color: #59646d;

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


/* =========================================================
   CASINO AREA CARDS
   ========================================================= */

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

.casino-area-card {
  position: relative;

  min-width: 0;
  padding: 34px;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 24px;

  border: 1px solid rgba(170, 135, 65, 0.3);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(247, 242, 231, 0.94)
    );

  box-shadow:
    0 18px 44px rgba(35, 44, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  overflow: hidden;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.casino-area-card::after {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 130px;
  height: 130px;

  border-radius: 0 0 0 100%;

  background:
    linear-gradient(
      135deg,
      rgba(215, 181, 99, 0.13),
      transparent
    );

  pointer-events: none;
}

.casino-area-card:hover {
  border-color: rgba(170, 135, 65, 0.5);

  box-shadow:
    0 24px 54px rgba(35, 44, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transform: translateY(-4px);
}

.casino-card-icon {
  position: relative;
  z-index: 1;

  width: 58px;
  height: 58px;

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

  border: 1px solid rgba(185, 143, 60, 0.42);
  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #fffaf0,
      #eee2c6
    );

  color: #9d742b;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.casino-card-icon svg {
  width: 40px;
  height: 40px;
}

.casino-area-card-content {
  position: relative;
  z-index: 1;
}

.casino-area-card .casino-card-label {
  margin: 1px 0 7px;
}

.casino-area-card h4 {
  margin: 0 0 13px;

  color: #13212a;

  font-size: 25px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.casino-area-card p:not(.casino-card-label) {
  margin: 0 0 19px;

  color: #5a656d;

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

.casino-area-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.casino-area-card li {
  position: relative;

  margin: 0;
  padding: 8px 0 8px 24px;

  border-top: 1px solid rgba(116, 126, 130, 0.12);

  color: #3f4c54;

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

.casino-area-card li::before {
  content: "";

  position: absolute;
  top: 15px;
  left: 3px;

  width: 7px;
  height: 7px;

  border: 1px solid #ae8233;

  transform: rotate(45deg);
}


/* =========================================================
   CASINO ADVANTAGES
   ========================================================= */

.casino-advantages {
  margin-top: 30px;

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

.casino-advantage {
  min-width: 0;
  padding: 25px 22px;

  border: 1px solid rgba(170, 135, 65, 0.23);
  border-radius: 9px;

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

  box-shadow:
    0 12px 30px rgba(35, 44, 48, 0.055);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.casino-advantage:hover {
  border-color: rgba(170, 135, 65, 0.43);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
}

.casino-advantage-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 17px;

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

  color: #a97d2e;
}

.casino-advantage-icon svg {
  width: 38px;
  height: 38px;
}

.casino-advantage h4 {
  margin: 0 0 10px;

  color: #17252d;

  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.casino-advantage p {
  margin: 0;

  color: #606a71;

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


/* =========================================================
   GAMING HIGHLIGHT
   ========================================================= */

.casino-gaming-highlight {
  margin-top: 72px;
  padding: 52px;

  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: center;

  border: 1px solid rgba(210, 175, 92, 0.32);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #11232d 0%,
      #0b1820 100%
    );

  box-shadow:
    0 24px 60px rgba(18, 31, 38, 0.16);

  overflow: hidden;
}

.casino-gaming-copy .section-label {
  margin-bottom: 12px;

  color: #e0be6c;
}

.casino-gaming-copy h3 {
  margin-bottom: 22px;

  color: #ffffff;
}

.casino-gaming-copy p {
  max-width: 700px;
  margin: 0 0 16px;

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

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

.casino-gaming-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   REWARDS CARD
   ========================================================= */

.casino-rewards-card {
  padding: 30px;

  border: 1px solid rgba(231, 199, 119, 0.42);
  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.casino-rewards-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;

  color: #e4c574;
}

.casino-rewards-card .casino-card-label {
  margin-bottom: 8px;

  color: #d8b55f;
}

.casino-rewards-card h4 {
  margin: 0 0 13px;

  color: #ffffff;

  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
}

.casino-rewards-card p:last-child {
  margin: 0;

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

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


/* =========================================================
   CASINO SECTION TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .casino-container {
    width: calc(100% - 48px);
  }

  .casino-intro-content {
    width: min(650px, 65%);
  }

  .casino-areas {
    gap: 18px;
  }

  .casino-area-card {
    padding: 28px;

    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 18px;
  }

  .casino-card-icon {
    width: 50px;
    height: 50px;
  }

  .casino-card-icon svg {
    width: 35px;
    height: 35px;
  }

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

  .casino-gaming-highlight {
    padding: 42px;

    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 32px;
  }
}


/* =========================================================
   CASINO SECTION MOBILE TABLET
   ========================================================= */

@media (max-width: 820px) {
  .casino-intro {
    min-height: auto;
    padding: 76px 0;

    background-position: 64% center;
  }

  .casino-intro-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 15, 22, 0.96) 0%,
        rgba(7, 17, 24, 0.9) 55%,
        rgba(8, 20, 28, 0.58) 100%
      );
  }

  .casino-intro-content {
    width: min(650px, 88%);
  }

  .casino-key-facts {
    max-width: 620px;
  }

  .casino-content {
    padding: 76px 0 84px;
  }

  .casino-areas {
    grid-template-columns: 1fr;
  }

  .casino-gaming-highlight {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   CASINO SECTION MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .casino-container {
    width: calc(100% - 28px);
  }

  .casino-intro {
    padding: 62px 0;

    background-position: 69% center;
  }

  .casino-intro-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 15, 22, 0.97) 0%,
        rgba(7, 17, 24, 0.93) 70%,
        rgba(8, 20, 28, 0.78) 100%
      );
  }

  .casino-intro-content {
    width: 100%;
  }

  .casino-intro .casino-eyebrow {
    margin-bottom: 18px;
    padding: 8px 10px;

    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .casino-intro h2 {
    font-size: 39px;
  }

  .casino-intro-content .casino-intro-lead {
    font-size: 17px;
  }

  .casino-intro-content > p:not(.casino-eyebrow) {
    font-size: 14px;
  }

  .casino-key-facts {
    grid-template-columns: 1fr;
    gap: 8px;

    margin-top: 28px;
  }

  .casino-key-fact {
    padding: 14px 16px;
  }

  .casino-content {
    padding: 62px 0 70px;
  }

  .casino-content-header {
    margin-bottom: 38px;

    text-align: left;
  }

  .casino-content-header h3::after {
    margin-right: 0;
    margin-left: 0;
  }

  .casino-content-header > p:last-child {
    font-size: 14px;
  }

  .casino-area-card {
    padding: 23px;

    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .casino-area-card h4 {
    font-size: 22px;
  }

  .casino-advantages {
    grid-template-columns: 1fr;
  }

  .casino-advantage {
    padding: 22px;
  }

  .casino-gaming-highlight {
    margin-top: 50px;
    padding: 28px 22px;

    gap: 28px;
  }

  .casino-gaming-copy h3 {
    font-size: 30px;
  }

  .casino-rewards-card {
    padding: 24px;
  }
}
/* =========================================================
   CASINO INTRO IMAGE LAYOUT
   ========================================================= */

.casino-intro {
  position: relative;

  min-height: 0;
  padding: 96px 0 82px;

  display: block;

  background-color: #f4f0e8;
  background-image: none;

  color: #17212a;

  overflow: hidden;
}

.casino-intro::before {
  content: "";

  position: absolute;
  top: -220px;
  left: -180px;

  width: 540px;
  height: 540px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(205, 169, 82, 0.13) 0%,
      rgba(205, 169, 82, 0) 70%
    );

  pointer-events: none;
}

.casino-intro::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(180, 140, 61, 0.42),
      transparent
    );
}

.casino-intro-overlay {
  display: none;
}

.casino-intro .casino-container {
  position: relative;
  z-index: 2;
}

.casino-intro-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(520px, 1.12fr);

  gap: 70px;
  align-items: center;
}


/* =========================================================
   CASINO INTRO COPY
   ========================================================= */

.casino-intro-content {
  width: 100%;
  max-width: 590px;

  color: #17212a;
  text-align: left;
}

.casino-intro .casino-eyebrow {
  display: inline-flex;

  margin: 0 0 20px;
  padding: 8px 12px;

  border: 1px solid rgba(174, 132, 47, 0.48);
  border-radius: 4px;

  background: rgba(255, 255, 255, 0.55);

  color: #956d27;

  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.casino-intro h2 {
  margin: 0 0 23px;

  color: #14232c;

  font-size: clamp(42px, 4vw, 62px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.casino-intro h2::after {
  content: "";

  display: block;

  width: 82px;
  height: 2px;
  margin-top: 21px;

  background:
    linear-gradient(
      90deg,
      #b58735,
      rgba(181, 135, 53, 0)
    );
}

.casino-intro-content > p:not(.casino-eyebrow) {
  max-width: 580px;
  margin: 0 0 16px;

  color: #59656d;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.casino-intro-content .casino-intro-lead {
  color: #26353d;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}


/* =========================================================
   CASINO KEY FACTS
   ========================================================= */

.casino-intro .casino-key-facts {
  width: 100%;
  margin-top: 30px;

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

.casino-intro .casino-key-fact {
  min-width: 0;
  padding: 15px 13px;

  border: 1px solid rgba(174, 132, 47, 0.29);
  border-radius: 6px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.83),
      rgba(245, 237, 220, 0.75)
    );

  box-shadow:
    0 9px 24px rgba(47, 53, 55, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.casino-intro .casino-key-fact strong {
  display: block;
  margin-bottom: 5px;

  color: #9b7128;

  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.casino-intro .casino-key-fact span {
  display: block;

  color: #69737a;

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


/* =========================================================
   CASINO INTRO IMAGE
   ========================================================= */

.casino-intro-visual {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 0;
}

.casino-intro-visual::before {
  content: "";

  position: absolute;
  top: -22px;
  right: -22px;
  z-index: -1;

  width: 54%;
  height: 48%;

  border: 1px solid rgba(174, 132, 47, 0.28);
  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(219, 186, 110, 0.16),
      rgba(219, 186, 110, 0.03)
    );
}

.casino-intro-visual::after {
  content: "";

  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: -1;

  width: 46%;
  height: 42%;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(32, 78, 87, 0.13),
      rgba(32, 78, 87, 0.02)
    );
}

.casino-image-frame {
  position: relative;

  width: 100%;
  aspect-ratio: 1.48 / 1;

  border: 1px solid rgba(165, 127, 51, 0.52);
  border-radius: 12px;

  background: #d9d1c3;

  box-shadow:
    0 26px 60px rgba(29, 42, 47, 0.16),
    0 8px 20px rgba(29, 42, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  overflow: hidden;
}

.casino-image-frame::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      transparent 48%,
      rgba(5, 18, 25, 0.1)
    );

  pointer-events: none;
}

.casino-image-frame img {
  display: block;

  width: 100%;
  height: 100%;

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

  transition:
    filter 0.4s ease,
    transform 0.6s ease;
}

.casino-intro-visual:hover .casino-image-frame img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.casino-intro-visual figcaption {
  margin: 13px 4px 0;

  color: #727b80;

  font-size: 10px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}


/* =========================================================
   CASINO INTRO LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .casino-intro {
    padding: 82px 0 72px;
  }

  .casino-intro-layout {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(430px, 1.05fr);

    gap: 44px;
  }

  .casino-intro h2 {
    font-size: clamp(39px, 4.5vw, 54px);
  }

  .casino-intro-content .casino-intro-lead {
    font-size: 17px;
  }
}


/* =========================================================
   CASINO INTRO TABLET
   ========================================================= */

@media (max-width: 860px) {
  .casino-intro {
    padding: 72px 0;
  }

  .casino-intro-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .casino-intro-content {
    max-width: 720px;
  }

  .casino-intro-content > p:not(.casino-eyebrow) {
    max-width: 700px;
  }

  .casino-intro-visual {
    max-width: 760px;
  }

  .casino-image-frame {
    aspect-ratio: 16 / 9;
  }
}


/* =========================================================
   CASINO INTRO MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .casino-intro {
    padding: 58px 0 62px;
  }

  .casino-intro-layout {
    gap: 34px;
  }

  .casino-intro .casino-eyebrow {
    margin-bottom: 17px;
    padding: 7px 9px;

    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .casino-intro h2 {
    font-size: 38px;
  }

  .casino-intro-content .casino-intro-lead {
    font-size: 16px;
  }

  .casino-intro-content > p:not(.casino-eyebrow) {
    font-size: 14px;
  }

  .casino-intro .casino-key-facts {
    grid-template-columns: 1fr;
    gap: 8px;

    margin-top: 25px;
  }

  .casino-intro .casino-key-fact {
    padding: 13px 15px;
  }

  .casino-image-frame {
    aspect-ratio: 4 / 3;
    border-radius: 9px;
  }

  .casino-intro-visual::before {
    top: -12px;
    right: -8px;
  }

  .casino-intro-visual::after {
    bottom: -12px;
    left: -8px;
  }

  .casino-intro-visual figcaption {
    margin-top: 10px;

    font-size: 9px;
    text-align: left;
  }
}

/* =========================================================
   GAMES SECTION
   ========================================================= */

.games-section {
  position: relative;

  width: 100%;
  padding: 108px 0 118px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(193, 151, 64, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 0% 48%,
      rgba(42, 104, 113, 0.065),
      transparent 30%
    ),
    #f8f5ef;

  color: #18262f;

  overflow: hidden;
}

.games-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(178, 137, 55, 0.42),
      transparent
    );
}

.games-container {
  position: relative;
  z-index: 1;

  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}


/* =========================================================
   SHARED GAMES TYPOGRAPHY
   ========================================================= */

.games-section-label,
.games-content-label,
.game-story-label {
  margin: 0;

  color: #a1772d;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.games-section h2,
.games-section h3,
.games-section h4,
.games-section p {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}


/* =========================================================
   GAMES INTRO
   ========================================================= */

.games-intro {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(520px, 1.14fr);

  gap: 70px;
  align-items: center;
}

.games-intro-copy {
  max-width: 570px;
}

.games-intro .games-section-label {
  margin-bottom: 16px;
}

.games-intro h2 {
  margin: 0 0 23px;

  color: #13242e;

  font-size: clamp(48px, 5vw, 72px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.games-intro h2::after {
  content: "";

  display: block;

  width: 82px;
  height: 2px;
  margin-top: 23px;

  background:
    linear-gradient(
      90deg,
      #b58735,
      rgba(181, 135, 53, 0)
    );
}

.games-intro-copy > p:not(.games-section-label) {
  margin: 0 0 16px;

  color: #5c6870;

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

.games-intro-copy .games-intro-lead {
  color: #273842;

  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}


/* =========================================================
   SHARED IMAGE FRAMES
   ========================================================= */

.games-intro-visual,
.game-story-visual,
.featured-game-visual,
.more-games-visual {
  position: relative;

  min-width: 0;
  margin: 0;
}

.games-image-frame {
  position: relative;

  width: 100%;

  border: 1px solid rgba(174, 132, 47, 0.45);
  border-radius: 12px;

  background: #d8d0c3;

  box-shadow:
    0 25px 58px rgba(25, 40, 47, 0.14),
    0 7px 18px rgba(25, 40, 47, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  overflow: hidden;
}

.games-image-frame::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      transparent 52%,
      rgba(4, 15, 22, 0.11)
    );

  pointer-events: none;
}

.games-image-frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    filter 0.4s ease,
    transform 0.65s ease;
}

.games-intro-visual:hover .games-image-frame img,
.game-story-visual:hover .games-image-frame img,
.featured-game-card:hover .games-image-frame img,
.more-games-visual:hover .games-image-frame img {
  filter: saturate(1.035) contrast(1.015);
  transform: scale(1.018);
}

.games-intro-visual .games-image-frame {
  aspect-ratio: 3 / 2;
}

.game-story-visual .games-image-frame {
  aspect-ratio: 3 / 2;
}

.featured-game-visual .games-image-frame {
  aspect-ratio: 1.48 / 1;
}

.more-games-visual .games-image-frame {
  aspect-ratio: 16 / 9;
}

.games-intro-visual figcaption,
.game-story-visual figcaption,
.more-games-visual figcaption {
  margin: 12px 4px 0;

  color: #747d82;

  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}


/* =========================================================
   INTRO IMAGE DECORATION
   ========================================================= */

.games-intro-visual::before {
  content: "";

  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;

  width: 54%;
  height: 48%;

  border: 1px solid rgba(176, 136, 55, 0.25);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(215, 180, 98, 0.13),
      rgba(215, 180, 98, 0.02)
    );
}

.games-intro-visual::after {
  content: "";

  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: -1;

  width: 44%;
  height: 40%;

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 86, 96, 0.12),
      rgba(30, 86, 96, 0.02)
    );
}


/* =========================================================
   GAME STORY SECTIONS
   ========================================================= */

.game-story {
  margin-top: 118px;

  display: grid;
  grid-template-columns:
    minmax(500px, 1.08fr)
    minmax(0, 0.92fr);

  gap: 72px;
  align-items: center;
}

.game-story-reverse {
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(500px, 1.08fr);
}

.game-story-content {
  min-width: 0;
}

.game-story-content .game-story-label {
  margin-bottom: 12px;
}

.game-story-content h3 {
  margin: 0 0 21px;

  color: #14252e;

  font-size: clamp(34px, 3.4vw, 49px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.game-story-content h3::after {
  content: "";

  display: block;

  width: 68px;
  height: 2px;
  margin-top: 18px;

  background:
    linear-gradient(
      90deg,
      #b58735,
      rgba(181, 135, 53, 0)
    );
}

.game-story-content > p:not(.game-story-label) {
  margin: 0 0 16px;

  color: #5c676e;

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

.game-story-content .game-story-lead {
  color: #2a3a43;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}


/* =========================================================
   GAME VARIATIONS
   ========================================================= */

.games-list {
  margin-top: 30px;
}

.game-variation {
  position: relative;

  margin-top: 14px;
  padding: 22px 24px 22px 28px;

  border: 1px solid rgba(174, 132, 47, 0.24);
  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.82),
      rgba(247, 241, 229, 0.76)
    );

  box-shadow:
    0 10px 25px rgba(36, 47, 51, 0.055);

  overflow: hidden;
}

.game-variation::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      #d4af5d,
      #9d7027
    );
}

.game-variation h4 {
  margin: 0 0 9px;

  color: #182a33;

  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
}

.game-variation p {
  margin: 0 0 11px;

  color: #5e6970;

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

.game-variation p:last-child {
  margin-bottom: 0;
}

.game-atmosphere-note {
  position: relative;

  padding-left: 18px;

  color: #8c6828 !important;

  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.game-atmosphere-note::before {
  content: "";

  position: absolute;
  top: 7px;
  left: 0;

  width: 8px;
  height: 8px;

  border: 1px solid #b68838;

  transform: rotate(45deg);
}


/* =========================================================
   GAME MOOD PILLS
   ========================================================= */

.game-mood {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-mood span {
  display: inline-flex;
  align-items: center;

  padding: 8px 11px;

  border: 1px solid rgba(165, 123, 42, 0.3);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.62);

  color: #795a24;

  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}


/* =========================================================
   FEATURED GAMES
   ========================================================= */

.featured-games {
  margin-top: 122px;
}

.featured-games-header {
  max-width: 780px;
  margin: 0 auto 48px;

  text-align: center;
}

.featured-games-header .games-section-label {
  margin-bottom: 12px;
}

.featured-games-header h3 {
  margin: 0;

  color: #14252e;

  font-size: clamp(35px, 3.5vw, 50px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.featured-games-header h3::after {
  content: "";

  display: block;

  width: 70px;
  height: 2px;
  margin: 19px auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      #b58735,
      transparent
    );
}

.featured-games-header > p:last-child {
  max-width: 700px;
  margin: 0 auto;

  color: #606b71;

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

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

.featured-game-card {
  min-width: 0;

  border: 1px solid rgba(174, 132, 47, 0.28);
  border-radius: 12px;

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

  box-shadow:
    0 18px 42px rgba(29, 42, 47, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);

  overflow: hidden;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.featured-game-card:hover {
  border-color: rgba(174, 132, 47, 0.48);

  box-shadow:
    0 25px 54px rgba(29, 42, 47, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);

  transform: translateY(-4px);
}

.featured-game-visual .games-image-frame {
  border: 0;
  border-bottom: 1px solid rgba(174, 132, 47, 0.28);
  border-radius: 0;

  box-shadow: none;
}

.featured-game-content {
  padding: 30px;
}

.featured-game-content .game-story-label {
  margin-bottom: 8px;
}

.featured-game-content h4 {
  margin: 0 0 15px;

  color: #172933;

  font-size: 27px;
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.featured-game-content > p:not(.game-story-label) {
  margin: 0 0 14px;

  color: #5d686f;

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

.featured-game-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   MORE GAMES
   ========================================================= */

.more-games {
  position: relative;

  margin-top: 122px;
  padding: 62px;

  border: 1px solid rgba(220, 187, 108, 0.32);
  border-radius: 15px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(215, 180, 94, 0.13),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #122630 0%,
      #09171f 100%
    );

  color: #ffffff;

  box-shadow:
    0 28px 70px rgba(18, 33, 40, 0.17);

  overflow: hidden;
}

.more-games-heading {
  max-width: 780px;
  margin: 0 0 40px;
}

.more-games-heading .games-section-label {
  margin-bottom: 11px;

  color: #dfbd69;
}

.more-games-heading h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.more-games-heading > p:last-child {
  max-width: 730px;
  margin: 0;

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

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

.more-games-visual {
  margin-bottom: 30px;
}

.more-games-visual .games-image-frame {
  border-color: rgba(225, 194, 119, 0.38);

  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.27);
}

.more-games-visual figcaption {
  color: rgba(255, 255, 255, 0.45);
}

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

.more-game-card {
  min-width: 0;
  padding: 24px 21px;

  border: 1px solid rgba(225, 194, 119, 0.25);
  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.more-game-card:hover {
  border-color: rgba(225, 194, 119, 0.45);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.055)
    );

  transform: translateY(-3px);
}

.more-game-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 17px;

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

  color: #e0bf6c;
}

.more-game-icon svg {
  width: 39px;
  height: 39px;
}

.more-game-card h4 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.more-game-card p {
  margin: 0;

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

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


/* =========================================================
   GAMING HOURS
   ========================================================= */

.gaming-hours {
  margin-top: 110px;

  display: grid;
  grid-template-columns:
    minmax(280px, 0.72fr)
    minmax(0, 1.28fr);

  gap: 68px;
  align-items: start;
}

.gaming-hours-heading {
  position: sticky;
  top: 108px;
}

.gaming-hours-heading .games-section-label {
  margin-bottom: 12px;
}

.gaming-hours-heading h3 {
  margin: 0 0 17px;

  color: #152731;

  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gaming-hours-heading p:last-child {
  margin: 0;

  color: #606b72;

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

.gaming-hours-table {
  border: 1px solid rgba(171, 130, 47, 0.3);
  border-radius: 11px;

  background: rgba(255, 255, 255, 0.73);

  box-shadow:
    0 17px 42px rgba(29, 42, 47, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);

  overflow: hidden;
}

.gaming-hours-row {
  min-height: 68px;
  padding: 17px 21px;

  display: grid;
  grid-template-columns:
    minmax(190px, 1.2fr)
    minmax(150px, 0.9fr)
    minmax(105px, 0.55fr);

  gap: 18px;
  align-items: center;

  border-bottom: 1px solid rgba(111, 122, 127, 0.13);
}

.gaming-hours-row:last-child {
  border-bottom: 0;
}

.gaming-hours-row:nth-child(even) {
  background: rgba(237, 228, 210, 0.38);
}

.gaming-hours-row span {
  color: #23353e;

  font-size: 13px;
  font-weight: 720;
  line-height: 1.4;
}

.gaming-hours-row strong {
  color: #69737a;

  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.gaming-hours-row time {
  color: #9a7029;

  font-size: 12px;
  font-weight: 780;
  line-height: 1.4;
  text-align: right;
}


/* =========================================================
   GAMES LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .games-section {
    padding: 92px 0 104px;
  }

  .games-container {
    width: calc(100% - 48px);
  }

  .games-intro {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(440px, 1.1fr);

    gap: 45px;
  }

  .game-story {
    grid-template-columns:
      minmax(430px, 1.04fr)
      minmax(0, 0.96fr);

    gap: 46px;
  }

  .game-story-reverse {
    grid-template-columns:
      minmax(0, 0.96fr)
      minmax(430px, 1.04fr);
  }

  .more-games {
    padding: 48px;
  }

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

  .gaming-hours {
    gap: 42px;
  }
}


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

@media (max-width: 860px) {
  .games-section {
    padding: 78px 0 88px;
  }

  .games-intro,
  .game-story,
  .game-story-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .games-intro-copy {
    max-width: 720px;
  }

  .games-intro-visual,
  .game-story-visual {
    max-width: 760px;
  }

  .game-story {
    margin-top: 92px;
  }

  .game-story-reverse .game-story-content {
    order: 2;
  }

  .game-story-reverse .game-story-visual {
    order: 1;
  }

  .featured-games {
    margin-top: 96px;
  }

  .featured-games-grid {
    gap: 18px;
  }

  .more-games {
    margin-top: 96px;
    padding: 38px;
  }

  .gaming-hours {
    margin-top: 92px;

    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gaming-hours-heading {
    position: static;

    max-width: 620px;
  }
}


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

@media (max-width: 640px) {
  .games-section {
    padding: 62px 0 72px;
  }

  .games-container {
    width: calc(100% - 28px);
  }

  .games-intro {
    gap: 32px;
  }

  .games-intro h2 {
    font-size: 43px;
  }

  .games-intro-copy .games-intro-lead {
    font-size: 17px;
  }

  .games-intro-copy > p:not(.games-section-label) {
    font-size: 14px;
  }

  .games-intro-visual::before {
    top: -10px;
    right: -8px;
  }

  .games-intro-visual::after {
    bottom: -10px;
    left: -8px;
  }

  .games-intro-visual .games-image-frame,
  .game-story-visual .games-image-frame {
    aspect-ratio: 4 / 3;
  }

  .games-intro-visual figcaption,
  .game-story-visual figcaption,
  .more-games-visual figcaption {
    font-size: 8px;
    text-align: left;
  }

  .game-story {
    margin-top: 74px;
    gap: 29px;
  }

  .game-story-content h3 {
    font-size: 34px;
  }

  .game-story-content .game-story-lead {
    font-size: 16px;
  }

  .game-variation {
    padding: 19px 18px 19px 23px;
  }

  .featured-games {
    margin-top: 76px;
  }

  .featured-games-header {
    margin-bottom: 33px;

    text-align: left;
  }

  .featured-games-header h3 {
    font-size: 35px;
  }

  .featured-games-header h3::after {
    margin-right: 0;
    margin-left: 0;
  }

  .featured-games-grid {
    grid-template-columns: 1fr;
  }

  .featured-game-content {
    padding: 24px 21px;
  }

  .featured-game-content h4 {
    font-size: 24px;
  }

  .more-games {
    margin-top: 76px;
    padding: 28px 19px;

    border-radius: 11px;
  }

  .more-games-heading {
    margin-bottom: 29px;
  }

  .more-games-heading h3 {
    font-size: 35px;
  }

  .more-games-heading > p:last-child {
    font-size: 14px;
  }

  .more-games-visual .games-image-frame {
    aspect-ratio: 4 / 3;
  }

  .more-games-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .more-game-card {
    padding: 21px 19px;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 13px;
  }

  .more-game-icon {
    grid-row: 1 / 3;

    margin: 0;
  }

  .more-game-card h4 {
    margin-top: 1px;
  }

  .gaming-hours {
    margin-top: 76px;
  }

  .gaming-hours-heading h3 {
    font-size: 34px;
  }

  .gaming-hours-row {
    padding: 16px 17px;

    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }

  .gaming-hours-row span {
    grid-column: 1 / 3;

    font-size: 13px;
  }

  .gaming-hours-row strong {
    font-size: 10px;
  }

  .gaming-hours-row time {
    font-size: 11px;
  }
}


/* =========================================================
   GAMES SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
  .games-container {
    width: calc(100% - 22px);
  }

  .games-intro h2 {
    font-size: 39px;
  }

  .game-story-content h3,
  .featured-games-header h3,
  .more-games-heading h3,
  .gaming-hours-heading h3 {
    font-size: 31px;
  }

  .game-mood span {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   PLAN YOUR VISIT SECTION
   ========================================================= */

.visit-section {
  position: relative;

  width: 100%;
  padding: 108px 0 116px;

  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(199, 158, 70, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 84%,
      rgba(48, 113, 124, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #08151e 0%,
      #0b2029 52%,
      #0a1821 100%
    );

  color: #ffffff;

  overflow: hidden;
}

.visit-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(224, 193, 113, 0.75),
      transparent
    );
}

.visit-section::after {
  content: "";

  position: absolute;
  top: 66px;
  right: -120px;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(218, 184, 101, 0.08);
  border-radius: 50%;

  box-shadow:
    0 0 0 46px rgba(218, 184, 101, 0.025),
    0 0 0 92px rgba(218, 184, 101, 0.018);

  pointer-events: none;
}

.visit-container {
  position: relative;
  z-index: 1;

  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}


/* =========================================================
   VISIT INTRO
   ========================================================= */

.visit-intro {
  max-width: 820px;
  margin: 0 auto 58px;

  text-align: center;
}

.visit-section-label,
.visit-card-label {
  margin: 0;

  color: #dfbf70;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-intro .visit-section-label {
  margin-bottom: 15px;
}

.visit-intro h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(48px, 5vw, 70px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.045em;
}

.visit-intro h2::after {
  content: "";

  display: block;

  width: 78px;
  height: 2px;
  margin: 23px auto 22px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #dfbf70,
      transparent
    );
}

.visit-intro-lead {
  max-width: 760px;
  margin: 0 auto;

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

  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}


/* =========================================================
   VISIT CARDS
   ========================================================= */

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

.visit-card {
  position: relative;

  min-width: 0;
  padding: 36px 31px 34px;

  border: 1px solid rgba(218, 184, 101, 0.3);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085) 0%,
      rgba(255, 255, 255, 0.035) 100%
    );

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);

  overflow: hidden;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.visit-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 31px;

  width: 54px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #e2c578,
      rgba(226, 197, 120, 0)
    );
}

.visit-card:hover {
  border-color: rgba(229, 199, 125, 0.55);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  transform: translateY(-5px);
}

.visit-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 26px;

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

  border: 1px solid rgba(223, 191, 112, 0.44);
  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(223, 191, 112, 0.14),
      rgba(223, 191, 112, 0.045)
    );

  color: #e2c578;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visit-card-icon svg {
  width: 38px;
  height: 38px;
}

.visit-card-content {
  width: 100%;
}

.visit-card .visit-card-label {
  margin-bottom: 9px;
}

.visit-card h3 {
  margin: 0 0 19px;

  color: #ffffff;

  font-size: 28px;
  font-weight: 730;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.visit-card-content > p:not(.visit-card-label) {
  margin: 0 0 14px;

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

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

.visit-card-content > p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   VISIT ARRIVAL NOTE
   ========================================================= */

.visit-arrival-note {
  position: relative;

  max-width: 1030px;
  margin: 32px auto 0;
  padding: 31px 36px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 25px;
  align-items: center;

  border: 1px solid rgba(215, 182, 104, 0.35);
  border-radius: 12px;

  background:
    linear-gradient(
      110deg,
      rgba(210, 174, 88, 0.13) 0%,
      rgba(255, 255, 255, 0.055) 46%,
      rgba(48, 113, 124, 0.1) 100%
    );

  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.visit-arrival-note::after {
  content: "";

  position: absolute;
  top: 13px;
  right: 13px;
  bottom: 13px;
  left: 13px;

  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 7px;

  pointer-events: none;
}

.visit-arrival-icon {
  position: relative;
  z-index: 1;

  width: 66px;
  height: 66px;

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

  border: 1px solid rgba(227, 196, 115, 0.48);
  border-radius: 50%;

  background: rgba(7, 20, 28, 0.4);

  color: #e3c473;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.visit-arrival-icon svg {
  width: 42px;
  height: 42px;
}

.visit-arrival-copy {
  position: relative;
  z-index: 1;
}

.visit-arrival-copy .visit-card-label {
  margin-bottom: 7px;
}

.visit-arrival-copy h3 {
  margin: 0 0 9px;

  color: #ffffff;

  font-size: 25px;
  font-weight: 730;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.visit-arrival-copy > p:last-child {
  max-width: 820px;
  margin: 0;

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

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


/* =========================================================
   PLAN YOUR VISIT LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .visit-section {
    padding: 90px 0 98px;
  }

  .visit-container {
    width: min(1040px, calc(100% - 40px));
  }

  .visit-cards {
    gap: 17px;
  }

  .visit-card {
    padding: 32px 25px 30px;
  }

  .visit-card::before {
    left: 25px;
  }

  .visit-card h3 {
    font-size: 25px;
  }
}


/* =========================================================
   PLAN YOUR VISIT TABLET
   ========================================================= */

@media (max-width: 860px) {
  .visit-section {
    padding: 78px 0 86px;
  }

  .visit-intro {
    max-width: 720px;
    margin-bottom: 45px;
  }

  .visit-cards {
    grid-template-columns: 1fr;
  }

  .visit-card {
    padding: 31px;

    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 24px;
  }

  .visit-card-icon {
    grid-column: 1;
    grid-row: 1;

    margin: 0;
  }

  .visit-card-content {
    grid-column: 2;
    grid-row: 1;
  }

  .visit-card h3 {
    font-size: 28px;
  }

  .visit-arrival-note {
    margin-top: 22px;
  }
}


/* =========================================================
   PLAN YOUR VISIT MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .visit-section {
    padding: 64px 0 72px;
  }

  .visit-section::after {
    display: none;
  }

  .visit-container {
    width: calc(100% - 28px);
  }

  .visit-intro {
    margin-bottom: 36px;

    text-align: left;
  }

  .visit-intro h2 {
    font-size: 43px;
  }

  .visit-intro h2::after {
    margin-right: 0;
    margin-left: 0;
  }

  .visit-intro-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .visit-cards {
    gap: 14px;
  }

  .visit-card {
    padding: 27px 22px;

    display: block;
  }

  .visit-card::before {
    left: 22px;
  }

  .visit-card-icon {
    margin-bottom: 21px;
  }

  .visit-card h3 {
    margin-bottom: 15px;

    font-size: 26px;
  }

  .visit-card-content > p:not(.visit-card-label) {
    font-size: 14px;
    line-height: 1.7;
  }

  .visit-arrival-note {
    padding: 27px 22px;

    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visit-arrival-icon {
    width: 58px;
    height: 58px;
  }

  .visit-arrival-icon svg {
    width: 37px;
    height: 37px;
  }

  .visit-arrival-copy h3 {
    font-size: 24px;
  }

  .visit-arrival-copy > p:last-child {
    font-size: 14px;
    line-height: 1.7;
  }
}


/* =========================================================
   PLAN YOUR VISIT SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
  .visit-container {
    width: calc(100% - 22px);
  }

  .visit-intro h2 {
    font-size: 39px;
  }

  .visit-card,
  .visit-arrival-note {
    padding-right: 19px;
    padding-left: 19px;
  }

  .visit-card::before {
    left: 19px;
  }

  .visit-card h3 {
    font-size: 24px;
  }
}


/* =========================================================
   PLAN YOUR VISIT REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .visit-card {
    transition: none;
  }

  .visit-card:hover {
    transform: none;
  }
}
/* =========================================================
   GAMING HOURS DESKTOP ALIGNMENT
   ========================================================= */

@media (min-width: 861px) {
  .gaming-hours {
    align-items: center;
  }

  .gaming-hours-heading {
    position: static;
    align-self: center;
  }
}
/* =========================================================
   DINING SECTION
   ========================================================= */

.dining-section {
  position: relative;

  width: 100%;
  padding: 112px 0 118px;

  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(198, 158, 73, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(45, 119, 128, 0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #07131b 0%,
      #0a2028 48%,
      #07161f 100%
    );

  color: #ffffff;

  overflow: hidden;
}

.dining-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(225, 194, 116, 0.76),
      transparent
    );
}

.dining-atmosphere {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.dining-atmosphere-left {
  top: 120px;
  left: -240px;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(218, 184, 101, 0.08);

  box-shadow:
    0 0 0 70px rgba(218, 184, 101, 0.025),
    0 0 0 140px rgba(218, 184, 101, 0.015);
}

.dining-atmosphere-right {
  right: -190px;
  bottom: 120px;

  width: 480px;
  height: 480px;

  background:
    radial-gradient(
      circle,
      rgba(55, 132, 141, 0.12),
      transparent 68%
    );
}

.dining-container {
  position: relative;
  z-index: 1;

  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}


/* =========================================================
   DINING INTRO
   ========================================================= */

.dining-intro {
  margin-bottom: 58px;

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(400px, 0.75fr);

  gap: 84px;
  align-items: end;
}

.dining-section-label,
.dining-card-label {
  margin: 0;

  color: #e0c173;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dining-intro-copy .dining-section-label {
  margin-bottom: 16px;
}

.dining-intro h2 {
  max-width: 690px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(55px, 6vw, 82px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.dining-intro h2::after {
  content: "";

  display: block;

  width: 84px;
  height: 2px;
  margin-top: 26px;

  background:
    linear-gradient(
      90deg,
      #e1c274,
      rgba(225, 194, 116, 0)
    );
}

.dining-intro-description {
  padding: 0 0 2px 27px;

  border-left: 1px solid rgba(224, 193, 115, 0.32);
}

.dining-intro-description p {
  margin: 0 0 14px;

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

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

.dining-intro-description p:last-child {
  margin-bottom: 0;
}

.dining-intro-description .dining-intro-lead {
  color: rgba(255, 255, 255, 0.88);

  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}


/* =========================================================
   FEATURED DINING
   ========================================================= */

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

.dining-featured-card {
  position: relative;

  min-width: 0;
  min-height: 610px;

  border: 1px solid rgba(225, 195, 119, 0.34);
  border-radius: 16px;

  background: #0a1921;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.dining-featured-card:hover {
  border-color: rgba(235, 206, 134, 0.65);

  box-shadow:
    0 38px 84px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  transform: translateY(-5px);
}

.dining-card-visual {
  position: absolute;
  inset: 0;

  margin: 0;
}

.dining-card-visual img {
  width: 100%;
  height: 100%;

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

  transition:
    filter 0.4s ease,
    transform 0.7s ease;
}

.dining-featured-card:first-child .dining-card-visual img {
  object-position: center center;
}

.dining-featured-card:nth-child(2) .dining-card-visual img {
  object-position: center center;
}

.dining-featured-card:hover .dining-card-visual img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.03);
}

.dining-card-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(4, 12, 17, 0.02) 0%,
      rgba(4, 12, 17, 0.08) 35%,
      rgba(4, 12, 17, 0.88) 78%,
      rgba(4, 12, 17, 0.98) 100%
    );

  pointer-events: none;
}

.dining-featured-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  padding: 42px 40px 36px;
}

.dining-featured-content .dining-card-label {
  margin-bottom: 10px;
}

.dining-featured-content h3 {
  max-width: 520px;
  margin: 0 0 14px;

  color: #ffffff;

  font-size: clamp(32px, 3vw, 45px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dining-featured-content > p:not(.dining-card-label) {
  max-width: 530px;
  margin: 0;

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

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

.dining-card-meta {
  margin-top: 21px;
  padding-top: 18px;

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

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

.dining-card-meta span {
  display: inline-flex;
  align-items: center;

  min-height: 29px;
  padding: 7px 11px;

  border: 1px solid rgba(226, 196, 120, 0.3);
  border-radius: 999px;

  background: rgba(6, 17, 23, 0.42);

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

  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}


/* =========================================================
   DINING COLLECTION HEADING
   ========================================================= */

.dining-collection-heading {
  margin: 92px 0 34px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.6fr);

  gap: 70px;
  align-items: end;
}

.dining-collection-heading .dining-section-label {
  margin-bottom: 10px;
}

.dining-collection-heading h3 {
  max-width: 670px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(36px, 4vw, 54px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.dining-collection-heading > p {
  margin: 0;
  padding-left: 24px;

  border-left: 1px solid rgba(224, 193, 115, 0.3);

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

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


/* =========================================================
   CASUAL DINING GRID
   ========================================================= */

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

.dining-casual-card {
  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(224, 193, 115, 0.24);
  border-radius: 14px;

  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.035) 100%
    );

  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.dining-casual-card:hover {
  border-color: rgba(233, 203, 130, 0.55);

  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.115) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );

  box-shadow:
    0 31px 68px rgba(0, 0, 0, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);

  transform: translateY(-5px);
}

.dining-casual-visual {
  position: relative;

  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;

  overflow: hidden;
}

.dining-casual-visual img {
  width: 100%;
  height: 100%;

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

  transition:
    filter 0.4s ease,
    transform 0.65s ease;
}

.dining-casual-card:hover .dining-casual-visual img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.dining-casual-image-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(5, 15, 20, 0.72) 100%
    );

  pointer-events: none;
}

.dining-image-caption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 1;

  margin: 0;

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

  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  text-shadow:
    0 2px 9px rgba(0, 0, 0, 0.55);
}

.dining-casual-content {
  flex: 1 1 auto;
  padding: 28px 26px 25px;

  display: flex;
  flex-direction: column;
}

.dining-casual-content .dining-card-label {
  margin-bottom: 8px;

  font-size: 9px;
  letter-spacing: 0.135em;
}

.dining-casual-content h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 28px;
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.dining-casual-content > p:not(.dining-card-label) {
  margin: 0;

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

  font-size: 13px;
  line-height: 1.72;
}

.dining-casual-meta {
  margin-top: auto;
  padding-top: 21px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;

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

.dining-casual-meta span {
  color: #dfbf70;

  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dining-casual-meta strong {
  max-width: 170px;

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

  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
}


/* =========================================================
   DINING CLOSING NOTE
   ========================================================= */

.dining-closing-note {
  position: relative;

  max-width: 1040px;
  margin: 48px auto 0;
  padding: 31px 36px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;

  border: 1px solid rgba(226, 196, 120, 0.34);
  border-radius: 13px;

  background:
    linear-gradient(
      110deg,
      rgba(216, 181, 94, 0.13) 0%,
      rgba(255, 255, 255, 0.055) 48%,
      rgba(48, 119, 128, 0.1) 100%
    );

  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.dining-closing-note::after {
  content: "";

  position: absolute;
  inset: 12px;

  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 8px;

  pointer-events: none;
}

.dining-closing-mark {
  position: relative;
  z-index: 1;

  width: 68px;
  height: 68px;

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

  border: 1px solid rgba(226, 196, 120, 0.45);
  border-radius: 50%;

  background: rgba(6, 17, 23, 0.38);

  color: #e2c477;
}

.dining-closing-mark svg {
  width: 46px;
  height: 46px;
}

.dining-closing-copy {
  position: relative;
  z-index: 1;
}

.dining-closing-copy .dining-card-label {
  margin-bottom: 7px;
}

.dining-closing-copy h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 740;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.dining-closing-copy > p:last-child {
  margin: 0;

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

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


/* =========================================================
   DINING LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .dining-section {
    padding: 94px 0 102px;
  }

  .dining-container {
    width: min(1040px, calc(100% - 40px));
  }

  .dining-intro {
    gap: 54px;
  }

  .dining-featured-card {
    min-height: 550px;
  }

  .dining-featured-content {
    padding: 36px 32px 31px;
  }

  .dining-collection-heading {
    margin-top: 78px;
    gap: 45px;
  }

  .dining-casual-grid {
    gap: 16px;
  }

  .dining-casual-content {
    padding: 25px 21px 22px;
  }

  .dining-casual-content h3 {
    font-size: 25px;
  }

  .dining-casual-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dining-casual-meta strong {
    max-width: none;

    text-align: left;
  }
}


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

@media (max-width: 860px) {
  .dining-section {
    padding: 80px 0 88px;
  }

  .dining-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dining-intro-description {
    max-width: 720px;
  }

  .dining-featured-grid {
    grid-template-columns: 1fr;
  }

  .dining-featured-card {
    min-height: 580px;
  }

  .dining-collection-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dining-collection-heading > p {
    max-width: 660px;
  }

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

  .dining-casual-card:first-child {
    grid-column: 1 / 3;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .dining-casual-card:first-child .dining-casual-visual {
    height: 100%;
    aspect-ratio: auto;
  }
}


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

@media (max-width: 640px) {
  .dining-section {
    padding: 64px 0 72px;
  }

  .dining-atmosphere {
    display: none;
  }

  .dining-container {
    width: calc(100% - 28px);
  }

  .dining-intro {
    margin-bottom: 38px;
  }

  .dining-intro h2 {
    font-size: 48px;
  }

  .dining-intro-description {
    padding-left: 19px;
  }

  .dining-intro-description .dining-intro-lead {
    font-size: 16px;
  }

  .dining-intro-description p {
    font-size: 14px;
    line-height: 1.7;
  }

  .dining-featured-grid {
    gap: 16px;
  }

  .dining-featured-card {
    min-height: 490px;

    border-radius: 12px;
  }

  .dining-featured-content {
    padding: 30px 22px 24px;
  }

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

  .dining-featured-content > p:not(.dining-card-label) {
    font-size: 13px;
  }

  .dining-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .dining-collection-heading {
    margin: 66px 0 27px;
  }

  .dining-collection-heading h3 {
    font-size: 38px;
  }

  .dining-collection-heading > p {
    padding-left: 19px;
  }

  .dining-casual-grid {
    grid-template-columns: 1fr;
  }

  .dining-casual-card:first-child {
    grid-column: auto;

    display: flex;
  }

  .dining-casual-card:first-child .dining-casual-visual {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .dining-casual-content {
    padding: 25px 21px 23px;
  }

  .dining-casual-content h3 {
    font-size: 27px;
  }

  .dining-casual-meta {
    flex-direction: row;
    align-items: flex-end;
  }

  .dining-casual-meta strong {
    max-width: 170px;

    text-align: right;
  }

  .dining-closing-note {
    padding: 27px 22px;

    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dining-closing-mark {
    width: 60px;
    height: 60px;
  }

  .dining-closing-mark svg {
    width: 40px;
    height: 40px;
  }

  .dining-closing-copy h3 {
    font-size: 25px;
  }
}


/* =========================================================
   DINING SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
  .dining-container {
    width: calc(100% - 22px);
  }

  .dining-intro h2 {
    font-size: 43px;
  }

  .dining-featured-card {
    min-height: 465px;
  }

  .dining-featured-content h3 {
    font-size: 29px;
  }

  .dining-collection-heading h3 {
    font-size: 34px;
  }

  .dining-casual-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .dining-casual-meta strong {
    max-width: none;

    text-align: left;
  }
}


/* =========================================================
   DINING REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .dining-featured-card,
  .dining-casual-card,
  .dining-card-visual img,
  .dining-casual-visual img {
    transition: none;
  }

  .dining-featured-card:hover,
  .dining-casual-card:hover {
    transform: none;
  }

  .dining-featured-card:hover .dining-card-visual img,
  .dining-casual-card:hover .dining-casual-visual img {
    transform: none;
  }
}

/* =========================================================
   RESORT SECTION
   ========================================================= */

.resort-section {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 132px 0 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 7% 14%,
      rgba(48, 111, 119, 0.2) 0,
      rgba(48, 111, 119, 0) 31%
    ),
    radial-gradient(
      circle at 93% 41%,
      rgba(42, 91, 112, 0.2) 0,
      rgba(42, 91, 112, 0) 28%
    ),
    linear-gradient(
      180deg,
      #07141d 0%,
      #0a202a 23%,
      #0d2934 52%,
      #0a202a 78%,
      #07151e 100%
    );

  color: #f7f1e5;

  isolation: isolate;
}

.resort-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  z-index: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(216, 184, 108, 0.15) 16%,
      rgba(216, 184, 108, 0.72) 50%,
      rgba(216, 184, 108, 0.15) 84%,
      transparent 100%
    );
}

.resort-section::after {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  z-index: 0;

  width: min(1280px, 92%);
  height: 360px;

  background:
    radial-gradient(
      ellipse at center top,
      rgba(197, 164, 89, 0.08) 0,
      rgba(197, 164, 89, 0) 70%
    );

  transform: translateX(-50%);
  pointer-events: none;
}

.resort-atmosphere {
  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}

.resort-atmosphere-top {
  top: 420px;
  left: -340px;

  width: 720px;
  height: 720px;

  background:
    radial-gradient(
      circle,
      rgba(40, 112, 116, 0.15) 0,
      rgba(40, 112, 116, 0) 69%
    );

  filter: blur(8px);
}

.resort-atmosphere-water {
  right: -360px;
  bottom: 580px;

  width: 820px;
  height: 820px;

  background:
    radial-gradient(
      circle,
      rgba(55, 104, 130, 0.15) 0,
      rgba(55, 104, 130, 0) 70%
    );

  filter: blur(12px);
}

.resort-container {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}


/* =========================================================
   RESORT SHARED TYPOGRAPHY
   ========================================================= */

.resort-section-label,
.resort-card-label {
  margin: 0;

  color: #d7b86c;

  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.resort-section h2,
.resort-section h3,
.resort-section h4,
.resort-section p {
  text-wrap: pretty;
}

.resort-section h2,
.resort-section h3 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;
}


/* =========================================================
   RESORT INTRO
   ========================================================= */

.resort-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  align-items: end;
  gap: 96px;

  margin: 0 0 68px;
}

.resort-intro-heading {
  position: relative;
}

.resort-intro-heading::before {
  content: "";

  position: absolute;
  top: 4px;
  left: -34px;

  width: 1px;
  height: 94px;

  background:
    linear-gradient(
      180deg,
      #d7b86c,
      rgba(215, 184, 108, 0)
    );
}

.resort-intro h2 {
  max-width: 660px;
  margin: 16px 0 0;

  color: #fffaf0;

  font-size: clamp(52px, 5.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.resort-intro-copy {
  max-width: 590px;
  padding: 0 0 4px;
}

.resort-intro-copy p {
  margin: 0;

  color: rgba(239, 244, 244, 0.69);

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

.resort-intro-copy p + p {
  margin-top: 19px;
}

.resort-intro-copy .resort-intro-lead {
  color: #f5eee1;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

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


/* =========================================================
   RESORT LANDMARK
   ========================================================= */

.resort-landmark {
  position: relative;

  margin: 0;

  overflow: hidden;

  border: 1px solid rgba(220, 193, 128, 0.24);
  border-radius: 3px;

  background: #07131b;

  box-shadow:
    0 38px 86px rgba(0, 0, 0, 0.34),
    0 2px 0 rgba(255, 255, 255, 0.025);
}

.resort-landmark-visual {
  position: relative;

  min-height: 660px;

  overflow: hidden;
}

.resort-landmark-visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 13, 19, 0.05) 0%,
      rgba(4, 13, 19, 0) 45%,
      rgba(4, 13, 19, 0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 13, 19, 0.02) 40%,
      rgba(4, 13, 19, 0.88) 100%
    );

  pointer-events: none;
}

.resort-landmark-visual img {
  width: 100%;
  height: 660px;

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

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.resort-landmark:hover .resort-landmark-visual img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.resort-landmark-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  align-items: end;
  gap: 64px;

  padding: 112px 54px 42px;

  background:
    linear-gradient(
      180deg,
      rgba(5, 15, 22, 0) 0%,
      rgba(5, 15, 22, 0.52) 36%,
      rgba(5, 15, 22, 0.94) 100%
    );
}

.resort-landmark-copy {
  max-width: 630px;
}

.resort-landmark-copy h3 {
  margin: 12px 0 14px;

  color: #fffaf0;

  font-size: clamp(34px, 3.4vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.resort-landmark-copy > p:last-child {
  max-width: 610px;
  margin: 0;

  color: rgba(240, 244, 242, 0.75);

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

.resort-landmark-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid rgba(220, 193, 128, 0.31);
  border-left: 1px solid rgba(220, 193, 128, 0.16);
}

.resort-landmark-fact {
  min-height: 83px;
  padding: 17px 18px 15px;

  border-right: 1px solid rgba(220, 193, 128, 0.16);
  border-bottom: 1px solid rgba(220, 193, 128, 0.16);
}

.resort-landmark-fact strong,
.resort-landmark-fact span {
  display: block;
}

.resort-landmark-fact strong {
  color: #f4deb0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.resort-landmark-fact span {
  margin-top: 5px;

  color: rgba(236, 240, 239, 0.6);

  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* =========================================================
   RESORT ACCOMMODATION
   ========================================================= */

.resort-stay {
  position: relative;

  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 0;

  margin: 132px 0 146px;
}

.resort-stay::before {
  content: "";

  position: absolute;
  top: 50%;
  right: -120px;

  z-index: -1;

  width: 70%;
  height: calc(100% + 96px);

  border: 1px solid rgba(202, 169, 100, 0.12);

  background:
    linear-gradient(
      135deg,
      rgba(83, 61, 43, 0.68) 0%,
      rgba(49, 45, 39, 0.42) 46%,
      rgba(16, 39, 46, 0.28) 100%
    );

  transform: translateY(-50%);
}

.resort-stay-visual {
  position: relative;
  z-index: 2;

  width: 100%;
  margin: 0;

  overflow: hidden;

  border: 1px solid rgba(223, 194, 126, 0.24);
  border-radius: 2px;

  box-shadow:
    0 35px 76px rgba(0, 0, 0, 0.35);
}

.resort-stay-visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(4, 12, 17, 0) 64%,
      rgba(4, 12, 17, 0.77) 100%
    );

  pointer-events: none;
}

.resort-stay-visual img {
  width: 100%;
  height: 720px;

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

  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.resort-stay-visual:hover img {
  transform: scale(1.025);
}

.resort-stay-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;

  z-index: 2;

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

  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.resort-stay-content {
  position: relative;
  z-index: 3;

  margin-left: -34px;
  padding: 62px 62px 56px 86px;

  border-top: 1px solid rgba(221, 191, 120, 0.2);
  border-right: 1px solid rgba(221, 191, 120, 0.15);
  border-bottom: 1px solid rgba(221, 191, 120, 0.2);

  background:
    linear-gradient(
      135deg,
      rgba(32, 42, 42, 0.97) 0%,
      rgba(23, 37, 40, 0.97) 58%,
      rgba(14, 35, 42, 0.97) 100%
    );

  box-shadow:
    26px 30px 68px rgba(0, 0, 0, 0.22);
}

.resort-stay-content::before {
  content: "";

  position: absolute;
  top: 61px;
  left: 0;

  width: 46px;
  height: 1px;

  background: #d7b86c;
}

.resort-stay-content > h3 {
  max-width: 620px;
  margin: 14px 0 23px;

  color: #fff8ec;

  font-size: clamp(39px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.resort-stay-content > p {
  max-width: 680px;
  margin: 0;

  color: rgba(235, 240, 239, 0.68);

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

.resort-stay-content > p + p {
  margin-top: 17px;
}

.resort-stay-content > .resort-stay-lead {
  color: #eee4d3;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  line-height: 1.58;
}

.resort-accommodation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;

  margin-top: 38px;

  border-top: 1px solid rgba(218, 188, 119, 0.18);
  border-left: 1px solid rgba(218, 188, 119, 0.12);
}

.resort-accommodation-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  min-height: 170px;
  padding: 22px 18px 20px;

  border-right: 1px solid rgba(218, 188, 119, 0.12);
  border-bottom: 1px solid rgba(218, 188, 119, 0.12);

  background: rgba(255, 255, 255, 0.018);
}

.resort-option-marker {
  flex: 0 0 auto;

  color: #d7b86c;
}

.resort-accommodation-option h4 {
  margin: 3px 0 8px;

  color: #fff4df;

  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.resort-accommodation-option p {
  margin: 0;

  color: rgba(231, 237, 236, 0.58);

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


/* =========================================================
   RESORT EXPERIENCES
   ========================================================= */

.resort-experiences {
  margin: 0 0 146px;
}

.resort-experiences-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.7fr);
  align-items: end;
  gap: 90px;

  margin-bottom: 52px;
}

.resort-experiences-heading h3 {
  max-width: 720px;
  margin: 14px 0 0;

  color: #fff8ec;

  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.resort-experiences-heading > p {
  max-width: 520px;
  margin: 0;

  color: rgba(231, 238, 238, 0.65);

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

.resort-experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  grid-template-areas:
    "pool bar"
    "show bar";
  gap: 22px;
}

.resort-experience {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(219, 190, 122, 0.16);
  border-radius: 2px;

  background: #0a1820;

  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.2);
}

.resort-experience-pool {
  grid-area: pool;

  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
}

.resort-experience-bar {
  grid-area: bar;

  display: flex;
  flex-direction: column;
}

.resort-experience-show {
  grid-area: show;

  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.resort-experience-visual {
  position: relative;

  margin: 0;

  overflow: hidden;
}

.resort-experience-visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5, 14, 20, 0.03) 55%,
      rgba(5, 14, 20, 0.32) 100%
    );

  pointer-events: none;
}

.resort-experience-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}

.resort-experience:hover .resort-experience-visual img {
  transform: scale(1.025);
  filter: saturate(1.035);
}

.resort-experience-pool .resort-experience-visual {
  min-height: 420px;
}

.resort-experience-pool .resort-experience-visual img {
  object-position: center center;
}

.resort-experience-bar .resort-experience-visual {
  min-height: 620px;
}

.resort-experience-bar .resort-experience-visual img {
  object-position: center 42%;
}

.resort-experience-show .resort-experience-visual {
  min-height: 340px;

  order: 2;
}

.resort-experience-show .resort-experience-visual img {
  object-position: center center;
}

.resort-experience-content {
  position: relative;

  padding: 38px 36px 34px;

  background:
    linear-gradient(
      145deg,
      rgba(16, 38, 46, 0.99),
      rgba(9, 25, 33, 0.99)
    );
}

.resort-experience-content::before {
  content: "";

  position: absolute;
  top: 0;
  left: 36px;

  width: 58px;
  height: 1px;

  background: #d7b86c;
}

.resort-experience-content h4 {
  margin: 11px 0 14px;

  color: #fff4e1;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.resort-experience-content > p:not(.resort-card-label) {
  margin: 0;

  color: rgba(231, 237, 236, 0.65);

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

.resort-experience-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-top: 25px;
  padding-top: 16px;

  border-top: 1px solid rgba(217, 186, 115, 0.14);
}

.resort-experience-meta span {
  color: rgba(231, 237, 236, 0.53);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resort-experience-meta strong {
  color: #eed89f;

  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.resort-experience-show .resort-experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 340px;
}

.resort-experience-show .resort-experience-content::before {
  top: 48px;
}

.resort-experience-show .resort-experience-content .resort-card-label {
  margin-top: 20px;
}

.resort-experience-bar .resort-experience-content {
  flex: 1 1 auto;

  padding-top: 41px;
}


/* =========================================================
   RESORT SERVICES
   ========================================================= */

.resort-services {
  position: relative;

  margin: 0 -50vw;
  padding: 112px calc(50vw - 50% + 40px) 122px;

  background:
    radial-gradient(
      circle at 14% 30%,
      rgba(39, 92, 99, 0.13),
      rgba(39, 92, 99, 0) 29%
    ),
    linear-gradient(
      180deg,
      rgba(5, 16, 23, 0.96) 0%,
      #06141c 100%
    );

  border-top: 1px solid rgba(217, 184, 108, 0.18);

  box-shadow:
    inset 0 30px 70px rgba(0, 0, 0, 0.16);
}

.resort-services::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(1320px, calc(100% - 80px));
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(215, 184, 108, 0.55),
      rgba(215, 184, 108, 0)
    );

  transform: translateX(-50%);
}

.resort-services-heading {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto 47px;
}

.resort-services-heading h3 {
  max-width: 760px;
  margin: 13px 0 0;

  color: #fff7e9;

  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.resort-services-grid {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;

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

  border-top: 1px solid rgba(218, 187, 117, 0.17);
  border-left: 1px solid rgba(218, 187, 117, 0.12);
}

.resort-service {
  position: relative;

  min-height: 190px;
  padding: 32px 32px 28px;

  border-right: 1px solid rgba(218, 187, 117, 0.12);
  border-bottom: 1px solid rgba(218, 187, 117, 0.12);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.026),
      rgba(255, 255, 255, 0.007)
    );

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.resort-service:hover {
  z-index: 2;

  background:
    linear-gradient(
      145deg,
      rgba(215, 184, 108, 0.075),
      rgba(51, 100, 103, 0.04)
    );

  transform: translateY(-3px);
}

.resort-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;

  color: #d7b86c;
}

.resort-service h4 {
  margin: 19px 0 8px;

  color: #fff3de;

  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.resort-service p {
  max-width: 330px;
  margin: 0;

  color: rgba(229, 236, 235, 0.57);

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


/* =========================================================
   RESORT ARRIVAL
   ========================================================= */

.resort-arrival {
  position: relative;

  width: min(1320px, calc(100vw - 80px));
  margin: 64px auto 0;
  padding: 42px 46px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.8fr);
  align-items: center;
  gap: 64px;

  border: 1px solid rgba(222, 191, 120, 0.2);

  background:
    linear-gradient(
      115deg,
      rgba(72, 54, 40, 0.5) 0%,
      rgba(18, 41, 47, 0.74) 54%,
      rgba(12, 32, 40, 0.9) 100%
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2);
}

.resort-arrival::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 46px;

  width: 110px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #d7b86c,
      rgba(215, 184, 108, 0)
    );
}

.resort-arrival-copy h3 {
  margin: 11px 0 12px;

  color: #fff5e4;

  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.resort-arrival-copy > p:last-child {
  max-width: 620px;
  margin: 0;

  color: rgba(231, 237, 236, 0.63);

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

.resort-arrival-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid rgba(219, 188, 118, 0.22);
  border-left: 1px solid rgba(219, 188, 118, 0.15);
}

.resort-arrival-times > div {
  min-height: 99px;
  padding: 20px 22px;

  border-right: 1px solid rgba(219, 188, 118, 0.15);
  border-bottom: 1px solid rgba(219, 188, 118, 0.15);
}

.resort-arrival-times span,
.resort-arrival-times strong {
  display: block;
}

.resort-arrival-times span {
  color: rgba(232, 238, 237, 0.51);

  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.resort-arrival-times strong {
  margin-top: 8px;

  color: #f2d99e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

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


/* =========================================================
   RESORT LARGE TABLET
   ========================================================= */

@media (max-width: 1180px) {
  .resort-section {
    padding-top: 112px;
  }

  .resort-container {
    width: min(calc(100% - 56px), 1160px);
  }

  .resort-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 0.8fr);
    gap: 56px;
  }

  .resort-landmark-visual,
  .resort-landmark-visual img {
    height: 610px;
    min-height: 610px;
  }

  .resort-landmark-caption {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 42px;

    padding-right: 38px;
    padding-left: 38px;
  }

  .resort-stay {
    grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  }

  .resort-stay-visual img {
    height: 700px;
  }

  .resort-stay-content {
    padding: 52px 42px 48px 68px;
  }

  .resort-accommodation-options {
    grid-template-columns: 1fr;
  }

  .resort-accommodation-option {
    min-height: auto;
  }

  .resort-experience-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

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

  .resort-experience-pool .resort-experience-visual {
    min-height: 380px;
  }

  .resort-services {
    padding-right: 28px;
    padding-left: 28px;
  }
}


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

@media (max-width: 920px) {
  .resort-section {
    padding-top: 96px;
  }

  .resort-container {
    width: min(calc(100% - 44px), 840px);
  }

  .resort-intro {
    grid-template-columns: 1fr;
    gap: 30px;

    margin-bottom: 50px;
  }

  .resort-intro-heading::before {
    display: none;
  }

  .resort-intro-copy {
    max-width: 680px;
  }

  .resort-intro h2 {
    font-size: clamp(48px, 9vw, 68px);
  }

  .resort-landmark-visual,
  .resort-landmark-visual img {
    height: 650px;
    min-height: 650px;
  }

  .resort-landmark-visual img {
    object-position: center center;
  }

  .resort-landmark-caption {
    grid-template-columns: 1fr;
    gap: 26px;

    padding: 150px 30px 30px;
  }

  .resort-landmark-copy {
    max-width: 660px;
  }

  .resort-landmark-facts {
    max-width: 600px;
  }

  .resort-stay {
    grid-template-columns: 1fr;

    margin: 104px 0 116px;
  }

  .resort-stay::before {
    top: 27%;
    right: -80px;

    width: 88%;
    height: 68%;

    transform: none;
  }

  .resort-stay-visual {
    width: 78%;
  }

  .resort-stay-visual img {
    height: 670px;
  }

  .resort-stay-content {
    width: 88%;
    margin: -82px 0 0 auto;
    padding: 54px 48px 48px;

    border-left: 1px solid rgba(221, 191, 120, 0.15);
  }

  .resort-stay-content::before {
    left: 0;
  }

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

  .resort-accommodation-option {
    display: block;

    padding: 20px 15px;
  }

  .resort-option-marker {
    display: block;

    margin-bottom: 10px;
  }

  .resort-experiences {
    margin-bottom: 112px;
  }

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

  .resort-experiences-heading > p {
    max-width: 650px;
  }

  .resort-experience-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "pool pool"
      "bar show";
  }

  .resort-experience-pool {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  }

  .resort-experience-bar .resort-experience-visual,
  .resort-experience-show .resort-experience-visual {
    min-height: 440px;
  }

  .resort-experience-show {
    display: flex;
    flex-direction: column;
  }

  .resort-experience-show .resort-experience-visual {
    order: 0;
  }

  .resort-experience-show .resort-experience-content {
    flex: 1 1 auto;

    min-height: auto;
  }

  .resort-experience-show .resort-experience-content::before {
    top: 0;
  }

  .resort-experience-show .resort-experience-content .resort-card-label {
    margin-top: 0;
  }

  .resort-services {
    margin-right: -50vw;
    margin-left: -50vw;
    padding-top: 92px;
  }

  .resort-services-heading,
  .resort-services-grid,
  .resort-arrival {
    width: min(100vw - 44px, 840px);
  }

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

  .resort-arrival {
    grid-template-columns: 1fr;
    gap: 32px;

    padding: 38px;
  }

  .resort-arrival-times {
    max-width: 520px;
  }
}


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

@media (max-width: 680px) {
  .resort-section {
    padding-top: 78px;
  }

  .resort-container {
    width: calc(100% - 30px);
  }

  .resort-section-label,
  .resort-card-label {
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .resort-intro {
    margin-bottom: 38px;
  }

  .resort-intro h2 {
    margin-top: 11px;

    font-size: clamp(42px, 14vw, 58px);
    line-height: 1;
  }

  .resort-intro-copy .resort-intro-lead {
    font-size: 19px;
    line-height: 1.5;
  }

  .resort-intro-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .resort-landmark {
    overflow: visible;

    border: 0;

    background: transparent;

    box-shadow: none;
  }

  .resort-landmark-visual {
    min-height: 420px;
    height: 420px;

    overflow: hidden;

    border: 1px solid rgba(220, 193, 128, 0.2);
  }

  .resort-landmark-visual img {
    min-height: 420px;
    height: 420px;

    object-position: 48% center;
  }

  .resort-landmark-visual::after {
    background:
      linear-gradient(
        180deg,
        rgba(4, 13, 19, 0.02) 55%,
        rgba(4, 13, 19, 0.52) 100%
      );
  }

  .resort-landmark-caption {
    position: relative;

    display: block;

    margin: -32px 10px 0;
    padding: 30px 20px 0;

    background:
      linear-gradient(
        180deg,
        rgba(8, 24, 31, 0.98),
        rgba(8, 24, 31, 0)
      );
  }

  .resort-landmark-copy h3 {
    font-size: 34px;
  }

  .resort-landmark-copy > p:last-child {
    font-size: 13px;
    line-height: 1.68;
  }

  .resort-landmark-facts {
    grid-template-columns: 1fr 1fr;

    margin-top: 25px;
  }

  .resort-landmark-fact {
    min-height: 76px;
    padding: 14px;
  }

  .resort-landmark-fact strong {
    font-size: 17px;
  }

  .resort-landmark-fact span {
    font-size: 8px;
  }

  .resort-stay {
    margin: 86px 0 94px;
  }

  .resort-stay::before {
    display: none;
  }

  .resort-stay-visual {
    width: calc(100% - 24px);
  }

  .resort-stay-visual img {
    height: 530px;
  }

  .resort-stay-content {
    width: calc(100% - 12px);
    margin: -48px 0 0 auto;
    padding: 39px 22px 30px;

    border-left: 1px solid rgba(221, 191, 120, 0.15);
  }

  .resort-stay-content::before {
    top: 38px;

    width: 28px;
  }

  .resort-stay-content > h3 {
    margin-top: 12px;

    font-size: 35px;
  }

  .resort-stay-content > .resort-stay-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .resort-stay-content > p {
    font-size: 13px;
    line-height: 1.68;
  }

  .resort-accommodation-options {
    grid-template-columns: 1fr;

    margin-top: 28px;
  }

  .resort-accommodation-option {
    display: flex;

    padding: 18px 15px;
  }

  .resort-option-marker {
    display: inline-flex;

    margin-bottom: 0;
  }

  .resort-accommodation-option h4 {
    font-size: 14px;
  }

  .resort-accommodation-option p {
    font-size: 11px;
  }

  .resort-experiences {
    margin-bottom: 90px;
  }

  .resort-experiences-heading {
    margin-bottom: 34px;
  }

  .resort-experiences-heading h3 {
    font-size: 36px;
  }

  .resort-experiences-heading > p {
    font-size: 13px;
    line-height: 1.68;
  }

  .resort-experience-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .resort-experience-pool,
  .resort-experience-show {
    display: flex;
    flex-direction: column;
  }

  .resort-experience-pool .resort-experience-visual,
  .resort-experience-bar .resort-experience-visual,
  .resort-experience-show .resort-experience-visual {
    min-height: 360px;
    height: 360px;

    order: 0;
  }

  .resort-experience-bar .resort-experience-visual {
    height: 470px;
    min-height: 470px;
  }

  .resort-experience-content,
  .resort-experience-bar .resort-experience-content {
    padding: 31px 23px 27px;
  }

  .resort-experience-content::before {
    left: 23px;
  }

  .resort-experience-show .resort-experience-content {
    min-height: auto;
  }

  .resort-experience-show .resort-experience-content::before {
    top: 0;
  }

  .resort-experience-content h4 {
    font-size: 25px;
  }

  .resort-experience-content > p:not(.resort-card-label) {
    font-size: 12px;
    line-height: 1.66;
  }

  .resort-services {
    padding: 76px 15px 82px;
  }

  .resort-services-heading,
  .resort-services-grid,
  .resort-arrival {
    width: 100%;
  }

  .resort-services-heading {
    margin-bottom: 32px;
  }

  .resort-services-heading h3 {
    font-size: 35px;
  }

  .resort-services-grid {
    grid-template-columns: 1fr;
  }

  .resort-service {
    min-height: auto;
    padding: 25px 24px 23px;
  }

  .resort-service h4 {
    margin-top: 13px;
  }

  .resort-arrival {
    margin-top: 42px;
    padding: 31px 23px;
  }

  .resort-arrival::before {
    left: 23px;

    width: 72px;
  }

  .resort-arrival-copy h3 {
    font-size: 28px;
  }

  .resort-arrival-copy > p:last-child {
    font-size: 12px;
    line-height: 1.65;
  }

  .resort-arrival-times {
    grid-template-columns: 1fr;
  }

  .resort-arrival-times > div {
    min-height: auto;
    padding: 17px 18px;
  }

  .resort-arrival-times strong {
    font-size: 19px;
  }
}


/* =========================================================
   RESORT SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .resort-container {
    width: calc(100% - 24px);
  }

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

  .resort-landmark-visual,
  .resort-landmark-visual img {
    height: 370px;
    min-height: 370px;
  }

  .resort-landmark-caption {
    margin-right: 5px;
    margin-left: 5px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .resort-landmark-copy h3 {
    font-size: 31px;
  }

  .resort-landmark-facts {
    grid-template-columns: 1fr;
  }

  .resort-stay-visual {
    width: calc(100% - 14px);
  }

  .resort-stay-visual img {
    height: 470px;
  }

  .resort-stay-content {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .resort-stay-content > h3 {
    font-size: 32px;
  }

  .resort-experiences-heading h3,
  .resort-services-heading h3 {
    font-size: 32px;
  }

  .resort-experience-pool .resort-experience-visual,
  .resort-experience-show .resort-experience-visual {
    height: 310px;
    min-height: 310px;
  }

  .resort-experience-bar .resort-experience-visual {
    height: 430px;
    min-height: 430px;
  }
}


/* =========================================================
   RESORT REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .resort-landmark-visual img,
  .resort-stay-visual img,
  .resort-experience-visual img,
  .resort-service {
    transition: none;
  }

  .resort-landmark:hover .resort-landmark-visual img,
  .resort-stay-visual:hover img,
  .resort-experience:hover .resort-experience-visual img {
    transform: none;
  }

  .resort-service:hover {
    transform: none;
  }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 132px 0 138px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(88, 66, 46, 0.34) 0,
      rgba(88, 66, 46, 0) 30%
    ),
    radial-gradient(
      circle at 91% 75%,
      rgba(32, 88, 94, 0.18) 0,
      rgba(32, 88, 94, 0) 31%
    ),
    linear-gradient(
      135deg,
      #f3ecdf 0%,
      #ece1d0 45%,
      #e7ddce 100%
    );

  color: #17252b;

  isolation: isolate;
}

.faq-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  z-index: 2;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(211, 176, 94, 0.25) 20%,
      rgba(211, 176, 94, 0.8) 50%,
      rgba(211, 176, 94, 0.25) 80%,
      transparent 100%
    );
}

.faq-section::after {
  content: "";

  position: absolute;
  top: -220px;
  left: 50%;

  z-index: 0;

  width: min(1050px, 88vw);
  height: 520px;

  border: 1px solid rgba(126, 93, 48, 0.08);
  border-radius: 50%;

  transform: translateX(-50%);

  pointer-events: none;
}

.faq-atmosphere {
  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}

.faq-atmosphere-left {
  top: 120px;
  left: -300px;

  width: 640px;
  height: 640px;

  background:
    radial-gradient(
      circle,
      rgba(114, 77, 48, 0.11) 0,
      rgba(114, 77, 48, 0) 68%
    );
}

.faq-atmosphere-right {
  right: -340px;
  bottom: -190px;

  width: 760px;
  height: 760px;

  background:
    radial-gradient(
      circle,
      rgba(28, 91, 98, 0.12) 0,
      rgba(28, 91, 98, 0) 70%
    );
}

.faq-container {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 82px;
}


/* =========================================================
   FAQ INTRO
   ========================================================= */

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-section-label {
  margin: 0;

  color: #876727;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faq-intro h2 {
  max-width: 500px;
  margin: 16px 0 27px;

  color: #10262d;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-intro-copy {
  position: relative;

  padding-left: 31px;
}

.faq-intro-copy::before {
  content: "";

  position: absolute;
  top: 4px;
  bottom: 3px;
  left: 0;

  width: 1px;

  background:
    linear-gradient(
      180deg,
      #a47e31 0%,
      rgba(164, 126, 49, 0.15) 66%,
      rgba(164, 126, 49, 0) 100%
    );
}

.faq-intro-copy > p {
  max-width: 470px;
  margin: 0;

  color: rgba(24, 45, 51, 0.68);

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

.faq-intro-copy > p + p {
  margin-top: 17px;
}

.faq-intro-copy .faq-intro-lead {
  color: #243c41;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  line-height: 1.55;
}

.faq-signature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 43px;

  border-top: 1px solid rgba(102, 75, 37, 0.2);
  border-left: 1px solid rgba(102, 75, 37, 0.14);
}

.faq-signature-item {
  min-height: 151px;
  padding: 21px 18px 19px;

  border-right: 1px solid rgba(102, 75, 37, 0.14);
  border-bottom: 1px solid rgba(102, 75, 37, 0.14);

  background: rgba(255, 253, 247, 0.22);
}

.faq-signature-item span,
.faq-signature-item strong,
.faq-signature-item p {
  display: block;
}

.faq-signature-item span {
  color: rgba(53, 68, 69, 0.55);

  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-signature-item strong {
  margin-top: 11px;

  color: #7f6128;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
  font-weight: 400;
  line-height: 1.18;
}

.faq-signature-item p {
  margin: 9px 0 0;

  color: rgba(33, 55, 59, 0.59);

  font-size: 10px;
  line-height: 1.48;
}


/* =========================================================
   FAQ QUESTIONS
   ========================================================= */

.faq-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-column:last-child {
  padding-top: 48px;
}

.faq-item {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(70, 70, 59, 0.17);
  border-radius: 2px 2px 30px 2px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 253, 247, 0.82) 0%,
      rgba(247, 241, 231, 0.7) 100%
    );

  box-shadow:
    0 16px 38px rgba(55, 48, 38, 0.07);

  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

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

  position: absolute;
  right: -1px;
  bottom: -1px;

  width: 32px;
  height: 32px;

  border-top: 1px solid rgba(132, 98, 42, 0.25);
  border-left: 1px solid rgba(132, 98, 42, 0.25);

  background: #e8decf;

  clip-path:
    polygon(
      100% 0,
      100% 100%,
      0 100%
    );

  pointer-events: none;
}

.faq-item:hover {
  border-color: rgba(135, 103, 46, 0.34);

  box-shadow:
    0 22px 48px rgba(55, 48, 38, 0.11);

  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(116, 88, 38, 0.45);

  background:
    linear-gradient(
      145deg,
      rgba(255, 253, 247, 0.98) 0%,
      rgba(244, 236, 223, 0.94) 100%
    );

  box-shadow:
    0 25px 55px rgba(55, 48, 38, 0.13),
    inset 4px 0 0 rgba(154, 116, 47, 0.72);

  transform: translateY(-2px);
}

.faq-question {
  position: relative;

  min-height: 126px;
  padding: 28px 65px 26px 27px;

  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: start;
  gap: 14px;

  color: #182f35;

  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: "";
}

.faq-question:focus-visible {
  outline: 2px solid #8d6b2f;
  outline-offset: -5px;
}

.faq-question-number {
  padding-top: 4px;

  color: #9a7734;

  font-size: 9px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.11em;
}

.faq-question-text {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.faq-question-toggle {
  position: absolute;
  top: 28px;
  right: 24px;

  width: 29px;
  height: 29px;

  border: 1px solid rgba(128, 94, 38, 0.35);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.32);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s ease;
}

.faq-question-toggle::before,
.faq-question-toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 11px;
  height: 1px;

  background: #715523;

  transform: translate(-50%, -50%);

  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}

.faq-question-toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.faq-item[open] .faq-question-toggle {
  border-color: #8c6828;

  background: #8c6828;

  transform: rotate(180deg);
}

.faq-item[open] .faq-question-toggle::before,
.faq-item[open] .faq-question-toggle::after {
  background: #fff8eb;
}

.faq-item[open] .faq-question-toggle::after {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(0deg);
}

.faq-answer {
  position: relative;

  margin: 0 27px 0 72px;
  padding: 0 0 31px;
}

.faq-answer::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(139, 104, 43, 0.42),
      rgba(139, 104, 43, 0)
    );
}

.faq-answer p {
  margin: 0;
  padding-top: 20px;

  color: rgba(30, 51, 55, 0.72);

  font-size: 13px;
  line-height: 1.72;
}

.faq-answer p + p {
  padding-top: 13px;
}


/* =========================================================
   FAQ LARGE TABLET
   ========================================================= */

@media (max-width: 1180px) {
  .faq-section {
    padding: 112px 0 118px;
  }

  .faq-container {
    width: min(calc(100% - 56px), 1120px);

    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
    gap: 52px;
  }

  .faq-intro h2 {
    font-size: 59px;
  }

  .faq-intro-copy {
    padding-left: 24px;
  }

  .faq-signature {
    grid-template-columns: 1fr;
  }

  .faq-signature-item {
    min-height: auto;
  }

  .faq-question {
    min-height: 135px;
    padding-right: 58px;
    padding-left: 21px;

    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-question-toggle {
    right: 19px;
  }

  .faq-answer {
    margin-right: 22px;
    margin-left: 57px;
  }
}


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

@media (max-width: 900px) {
  .faq-section {
    padding: 94px 0 105px;
  }

  .faq-container {
    width: min(calc(100% - 44px), 820px);

    grid-template-columns: 1fr;
    gap: 58px;
  }

  .faq-intro {
    position: relative;
    top: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: end;
    gap: 40px;
  }

  .faq-intro h2 {
    max-width: 620px;

    font-size: clamp(50px, 8vw, 68px);
  }

  .faq-intro-copy > p {
    max-width: 590px;
  }

  .faq-signature {
    margin-top: 0;

    grid-template-columns: 1fr;
  }

  .faq-signature-item {
    min-height: 126px;
  }

  .faq-column:last-child {
    padding-top: 36px;
  }
}


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

@media (max-width: 680px) {
  .faq-section {
    padding: 76px 0 84px;
  }

  .faq-container {
    width: calc(100% - 30px);
    gap: 44px;
  }

  .faq-intro {
    display: block;
  }

  .faq-section-label {
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .faq-intro-copy {
    padding-left: 19px;
  }

  .faq-intro h2 {
    margin-top: 12px;

    font-size: clamp(43px, 13vw, 58px);
  }

  .faq-intro-copy .faq-intro-lead {
    font-size: 18px;
  }

  .faq-intro-copy > p {
    font-size: 13px;
    line-height: 1.68;
  }

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

    margin-top: 32px;
  }

  .faq-signature-item {
    min-height: 134px;
    padding: 18px 14px;
  }

  .faq-signature-item strong {
    font-size: 18px;
  }

  .faq-questions {
    display: block;
  }

  .faq-column {
    gap: 14px;
  }

  .faq-column:last-child {
    padding-top: 14px;
  }

  .faq-item,
  .faq-item[open] {
    transform: none;
  }

  .faq-question {
    min-height: 110px;
    padding: 23px 55px 22px 18px;

    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .faq-question-number {
    font-size: 8px;
  }

  .faq-question-text {
    font-size: 17px;
    line-height: 1.38;
  }

  .faq-question-toggle {
    top: 23px;
    right: 17px;

    width: 27px;
    height: 27px;
  }

  .faq-answer {
    margin-right: 20px;
    margin-left: 50px;
    padding-bottom: 26px;
  }

  .faq-answer p {
    font-size: 12px;
    line-height: 1.68;
  }
}


/* =========================================================
   FAQ SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .faq-container {
    width: calc(100% - 24px);
  }

  .faq-intro h2 {
    font-size: 43px;
  }

  .faq-signature {
    grid-template-columns: 1fr;
  }

  .faq-signature-item {
    min-height: auto;
  }

  .faq-question {
    grid-template-columns: 20px minmax(0, 1fr);

    min-height: 105px;
    padding-right: 50px;
    padding-left: 15px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-question-toggle {
    right: 14px;
  }

  .faq-answer {
    margin-right: 17px;
    margin-left: 43px;
  }
}


/* =========================================================
   FAQ REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-question-toggle,
  .faq-question-toggle::before,
  .faq-question-toggle::after {
    transition: none;
  }

  .faq-item:hover,
  .faq-item[open] {
    transform: none;
  }
}
/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 82px 0 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 7% 18%,
      rgba(40, 103, 106, 0.13) 0,
      rgba(40, 103, 106, 0) 29%
    ),
    radial-gradient(
      circle at 92% 75%,
      rgba(165, 125, 51, 0.1) 0,
      rgba(165, 125, 51, 0) 28%
    ),
    linear-gradient(
      145deg,
      #061117 0%,
      #071820 48%,
      #051017 100%
    );

  color: #f6f0e4;

  isolation: isolate;
}

.site-footer::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  z-index: 2;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(216, 184, 108, 0.18) 17%,
      rgba(216, 184, 108, 0.78) 50%,
      rgba(216, 184, 108, 0.18) 83%,
      transparent 100%
    );
}

.footer-atmosphere {
  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}

.footer-atmosphere-left {
  top: -280px;
  left: -320px;

  width: 670px;
  height: 670px;

  border: 1px solid rgba(68, 137, 139, 0.08);

  box-shadow:
    inset 0 0 120px rgba(46, 112, 115, 0.05);
}

.footer-atmosphere-right {
  right: -280px;
  bottom: -400px;

  width: 690px;
  height: 690px;

  border: 1px solid rgba(206, 169, 84, 0.06);

  box-shadow:
    inset 0 0 130px rgba(166, 126, 49, 0.04);
}

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

  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.3fr) minmax(180px, 0.55fr) minmax(230px, 0.72fr);
  align-items: start;
  gap: 76px;

  padding-bottom: 62px;
}

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

.footer-logo {
  width: 230px;
  margin: 0 0 24px;
}

.footer-logo img {
  display: block;

  width: 100%;
  max-width: 230px;
  height: auto;
  max-height: 62px;

  object-fit: contain;
  object-position: left center;

  filter:
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.footer-brand > p {
  max-width: 490px;
  margin: 0;

  color: rgba(231, 238, 237, 0.63);

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

.footer-column-label {
  position: relative;

  margin: 3px 0 23px;
  padding-bottom: 13px;

  color: #d7b86c;

  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-column-label::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 42px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #d7b86c,
      rgba(215, 184, 108, 0)
    );
}

.footer-navigation ul,
.footer-details ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-navigation li,
.footer-details li {
  margin: 0;
  padding: 0;
}

.footer-navigation li + li,
.footer-details li + li {
  margin-top: 12px;
}

.footer-navigation a,
.footer-details a {
  position: relative;

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

  color: rgba(238, 243, 241, 0.67);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-navigation a::before,
.footer-details a::before {
  content: "";

  width: 0;
  height: 1px;
  margin-right: 0;

  background: #d7b86c;

  transition:
    width 0.25s ease,
    margin-right 0.25s ease;
}

.footer-navigation a:hover,
.footer-details a:hover {
  color: #efd89e;

  transform: translateX(2px);
}

.footer-navigation a:hover::before,
.footer-details a:hover::before {
  width: 13px;
  margin-right: 8px;
}

.footer-navigation a:focus-visible,
.footer-details a:focus-visible {
  outline: 2px solid #d7b86c;
  outline-offset: 4px;
}


/* =========================================================
   FOOTER LOCATION
   ========================================================= */

.footer-location {
  position: relative;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 0.45fr);
  align-items: center;
  gap: 24px;

  margin: 0;
  padding: 29px 34px;

  border-top: 1px solid rgba(217, 185, 109, 0.27);
  border-right: 1px solid rgba(217, 185, 109, 0.14);
  border-bottom: 1px solid rgba(217, 185, 109, 0.27);
  border-left: 3px solid #c9a253;

  background:
    linear-gradient(
      115deg,
      rgba(81, 60, 42, 0.34) 0%,
      rgba(23, 48, 53, 0.64) 48%,
      rgba(10, 29, 37, 0.88) 100%
    );

  font-style: normal;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18);
}

.footer-location::after {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 90px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(215, 184, 108, 0),
      rgba(215, 184, 108, 0.65)
    );
}

.footer-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border: 1px solid rgba(215, 184, 108, 0.26);
  border-radius: 50%;

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

  color: #d7b86c;
}

.footer-location-copy span,
.footer-location-copy strong,
.footer-location-note span,
.footer-location-note strong {
  display: block;
}

.footer-location-copy span {
  color: rgba(232, 238, 237, 0.52);

  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-location-copy strong {
  margin-top: 6px;

  color: #fff6e7;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
}

.footer-location-note {
  padding-left: 28px;

  border-left: 1px solid rgba(215, 184, 108, 0.17);
}

.footer-location-note span {
  color: rgba(232, 238, 237, 0.49);

  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-location-note strong {
  margin-top: 7px;

  color: #e5cc91;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

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

  margin-top: 44px;
  padding: 24px 0 27px;

  border-top: 1px solid rgba(215, 184, 108, 0.11);
}

.footer-bottom p {
  margin: 0;

  color: rgba(226, 233, 232, 0.42);

  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0.07em;
}

.footer-bottom p:last-child {
  color: rgba(215, 184, 108, 0.57);

  text-transform: uppercase;
}


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

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

  .footer-container {
    width: min(calc(100% - 44px), 840px);
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.55fr);
    gap: 50px 42px;

    padding-bottom: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;

    max-width: 630px;
  }

  .footer-location {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-location-note {
    grid-column: 2;

    padding: 19px 0 0;

    border-top: 1px solid rgba(215, 184, 108, 0.14);
    border-left: 0;
  }
}


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

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

  .footer-container {
    width: calc(100% - 30px);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;

    padding-bottom: 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 205px;
    margin-bottom: 20px;
  }

  .footer-brand > p {
    font-size: 13px;
    line-height: 1.68;
  }

  .footer-column-label {
    font-size: 9px;
  }

  .footer-navigation a,
  .footer-details a {
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-location {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;

    padding: 26px 23px;
  }

  .footer-location-icon {
    width: 49px;
    height: 49px;
  }

  .footer-location-icon svg {
    width: 31px;
    height: 31px;
  }

  .footer-location-copy strong {
    font-size: 19px;
  }

  .footer-location-note {
    width: 100%;
    padding-top: 16px;
  }

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

    margin-top: 34px;
    padding: 20px 0 24px;
  }
}


/* =========================================================
   FOOTER SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .footer-container {
    width: calc(100% - 24px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand,
  .footer-navigation,
  .footer-details {
    grid-column: auto;
  }

  .footer-location {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-location-copy strong {
    font-size: 18px;
  }
}


/* =========================================================
   FOOTER REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .footer-navigation a,
  .footer-details a,
  .footer-navigation a::before,
  .footer-details a::before {
    transition: none;
  }

  .footer-navigation a:hover,
  .footer-details a:hover {
    transform: none;
  }
}

/* =========================================================
   FINAL DARK CONTINUITY OVERRIDES
   ========================================================= */

.casino-content {
  color: #f3eee4;
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 145, 65, 0.15), transparent 28%),
    radial-gradient(circle at 4% 88%, rgba(92, 54, 43, 0.2), transparent 32%),
    linear-gradient(145deg, #171416 0%, #231a19 48%, #10171b 100%);
}

.casino-content-header h3,
.casino-gaming-copy h3,
.casino-area-card h4,
.casino-advantage h4,
.casino-rewards-card h4 {
  color: #fff7e9;
}

.casino-content-header > p:last-child,
.casino-area-card p:not(.casino-card-label),
.casino-advantage p,
.casino-gaming-copy p,
.casino-rewards-card p:last-child {
  color: rgba(236, 237, 233, 0.68);
}

.casino-area-card,
.casino-gaming-highlight,
.casino-rewards-card {
  border-color: rgba(213, 174, 92, 0.25);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.casino-card-icon {
  border-color: rgba(211, 171, 87, 0.35);
  background:
    linear-gradient(145deg, rgba(225, 192, 119, 0.16), rgba(255, 255, 255, 0.03));
  color: #dabb70;
  box-shadow: none;
}

.casino-area-card li {
  border-color: rgba(226, 232, 229, 0.09);
  color: rgba(238, 239, 235, 0.73);
}

.casino-advantage {
  border-color: rgba(208, 169, 86, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.casino-advantage:hover {
  border-color: rgba(218, 180, 98, 0.4);
  background: rgba(255, 255, 255, 0.065);
}

.games-section {
  color: #eef3f1;
  background:
    radial-gradient(circle at 8% 9%, rgba(72, 133, 140, 0.19), transparent 29%),
    radial-gradient(circle at 94% 69%, rgba(183, 139, 61, 0.11), transparent 27%),
    linear-gradient(145deg, #13282f 0%, #19343b 46%, #10242b 100%);
}

.games-section::before {
  height: 1px;
  opacity: 0.72;
}

.games-intro h2,
.game-story-content h3,
.featured-games-header h3,
.featured-game-content h4,
.gaming-hours-heading h3,
.game-variation h4 {
  color: #fff8ea;
}

.games-intro-copy > p:not(.games-section-label),
.game-story-content > p:not(.game-story-label),
.featured-games-header > p:last-child,
.featured-game-content > p:not(.game-story-label),
.gaming-hours-heading p:last-child,
.game-variation p {
  color: rgba(227, 236, 234, 0.68);
}

.games-intro-copy .games-intro-lead,
.game-story-content .game-story-lead {
  color: rgba(250, 244, 232, 0.9);
}

.games-intro-visual figcaption,
.game-story-visual figcaption,
.more-games-visual figcaption {
  color: rgba(220, 230, 228, 0.48);
}

.games-image-frame {
  border-color: rgba(207, 169, 88, 0.34);
  background: #0d2027;
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.28),
    0 7px 18px rgba(0, 0, 0, 0.15);
}

.game-variation,
.featured-game-card,
.gaming-hours-table {
  border-color: rgba(205, 168, 88, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.game-mood span {
  border-color: rgba(210, 172, 91, 0.3);
  background: rgba(255, 255, 255, 0.045);
  color: #dfc17d;
}

.gaming-hours-row {
  border-color: rgba(229, 235, 232, 0.09);
}

.gaming-hours-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.gaming-hours-row span {
  color: rgba(245, 244, 238, 0.88);
}

.gaming-hours-row strong {
  color: rgba(221, 231, 229, 0.56);
}

.gaming-hours-row time {
  color: #dfbd70;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 220px),
    radial-gradient(circle at 12% 24%, rgba(50, 91, 94, 0.13), transparent 30%),
    radial-gradient(circle at 91% 76%, rgba(115, 84, 48, 0.12), transparent 31%),
    #d7d7cf;
}

/* =========================================================
   FINAL SITE-WIDE VISUAL RHYTHM OVERRIDES
   ========================================================= */

.casino-content {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.56), transparent 46%),
    radial-gradient(circle at 92% 12%, rgba(188, 147, 67, 0.13), transparent 28%),
    #f1eee6;
}

.casino-area-card {
  border-radius: 2px 24px 2px 24px;
}

.games-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 210px),
    radial-gradient(circle at 8% 30%, rgba(48, 106, 119, 0.11), transparent 30%),
    radial-gradient(circle at 94% 74%, rgba(178, 139, 63, 0.09), transparent 25%),
    #e8eeeb;
}

.games-section::before {
  height: 7px;
  background:
    linear-gradient(
      90deg,
      #d8e2df 0%,
      #5e8992 32%,
      #c7a45b 50%,
      #5e8992 68%,
      #d8e2df 100%
    );
  opacity: 0.7;
}

.game-variation {
  border-color: rgba(47, 91, 99, 0.19);
  border-radius: 2px 18px 2px 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.79),
      rgba(231, 239, 236, 0.72)
    );
  box-shadow: 0 14px 34px rgba(23, 51, 57, 0.07);
}

.visit-section {
  background:
    radial-gradient(circle at 7% 8%, rgba(209, 166, 83, 0.18), transparent 28%),
    radial-gradient(circle at 93% 82%, rgba(117, 75, 58, 0.24), transparent 34%),
    linear-gradient(145deg, #1b1516 0%, #30201d 52%, #171417 100%);
}

.visit-section::after {
  border-color: rgba(226, 190, 111, 0.11);
  box-shadow:
    0 0 0 46px rgba(218, 184, 101, 0.032),
    0 0 0 92px rgba(218, 184, 101, 0.022);
}

.visit-card {
  border-color: rgba(224, 190, 113, 0.25);
  border-radius: 2px 22px 2px 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 247, 232, 0.09),
      rgba(255, 255, 255, 0.025)
    );
}

.dining-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 160, 75, 0.15), transparent 27%),
    radial-gradient(circle at 92% 72%, rgba(51, 133, 140, 0.22), transparent 34%),
    linear-gradient(145deg, #07151c 0%, #0b2c34 50%, #071820 100%);
}

.resort-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(100, 164, 169, 0.19), transparent 31%),
    radial-gradient(circle at 92% 43%, rgba(82, 130, 153, 0.2), transparent 28%),
    linear-gradient(
      180deg,
      #102f38 0%,
      #16434e 24%,
      #123844 54%,
      #0d2b35 80%,
      #091c25 100%
    );
}

.resort-landmark,
.resort-stay-copy,
.resort-experience-copy {
  border-radius: 2px 24px 2px 24px;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 220px),
    radial-gradient(circle at 12% 24%, rgba(93, 127, 127, 0.13), transparent 30%),
    radial-gradient(circle at 91% 76%, rgba(143, 105, 55, 0.13), transparent 31%),
    #f2efe7;
}

.faq-item {
  border-radius: 2px 18px 2px 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(52, 119, 122, 0.15), transparent 29%),
    radial-gradient(circle at 92% 75%, rgba(177, 137, 57, 0.11), transparent 28%),
    linear-gradient(145deg, #050e13 0%, #071a21 48%, #040c11 100%);
}

@media (max-width: 1180px) {
  .faq-container {
    width: min(calc(100% - 56px), 1120px);
  }
}

@media (max-width: 920px) {
  .footer-container {
    width: min(calc(100% - 44px), 840px);
  }
}

/* =========================================================
   HOBART CASINO — LEGAL PAGES
   Matches the dark teal, charcoal and gold site palette
   ========================================================= */

:root {
  --legal-bg: #071018;
  --legal-bg-soft: #0d2027;
  --legal-panel: rgba(255, 255, 255, 0.045);
  --legal-panel-strong: rgba(255, 255, 255, 0.07);
  --legal-gold: #d7b668;
  --legal-gold-light: #efd788;
  --legal-gold-soft: rgba(215, 182, 104, 0.16);
  --legal-border: rgba(215, 182, 104, 0.28);
  --legal-text: rgba(239, 242, 239, 0.76);
  --legal-heading: #fff8ea;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(215, 182, 104, 0.18);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
  color: var(--legal-gold-light);
}

.legal-page {
  padding-top: 76px;
  background:
    radial-gradient(circle at 8% 10%, rgba(70, 128, 132, 0.13), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(173, 128, 53, 0.10), transparent 28%),
    var(--legal-bg);
  color: var(--legal-text);
}

.legal-page .site-header {
  position: fixed;
}

.legal-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.legal-header-nav a {
  position: relative;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-header-nav a:hover,
.legal-header-nav a:focus {
  color: var(--legal-gold-light);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 86px;
  border-bottom: 1px solid rgba(215, 182, 104, 0.2);
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 182, 104, 0.16), transparent 30%),
    linear-gradient(145deg, #071018 0%, #0b2028 52%, #08141b 100%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(215, 182, 104, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(215, 182, 104, 0.025),
    0 0 0 96px rgba(215, 182, 104, 0.018);
}

.legal-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--legal-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--legal-gold), transparent);
}

.legal-hero h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.75;
}

.legal-updated {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 14px;
  border: 1px solid var(--legal-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--legal-gold-light);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.legal-main {
  padding: 78px 0 104px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 46px;
  align-items: start;
}

.legal-article {
  padding: 46px;
  border: 1px solid var(--legal-border);
  border-radius: 2px 24px 2px 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-section + .legal-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(215, 182, 104, 0.14);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--legal-heading);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 750;
}

.legal-section h3 {
  margin: 26px 0 10px;
  color: #f5e8c3;
  font-size: 19px;
  font-weight: 750;
}

.legal-section p,
.legal-section li {
  color: var(--legal-text);
  font-size: 15px;
  line-height: 1.9;
}

.legal-section p + p {
  margin-top: 15px;
}

.legal-section ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}

.legal-section li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--legal-gold);
  box-shadow: 0 0 0 4px var(--legal-gold-soft);
}

.legal-section a {
  color: var(--legal-gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(239, 215, 136, 0.35);
  text-underline-offset: 3px;
}

.legal-sidebar {
  position: sticky;
  top: 102px;
  padding: 26px;
  border: 1px solid var(--legal-border);
  border-radius: 2px 20px 2px 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.legal-sidebar-title {
  display: block;
  margin-bottom: 14px;
  color: var(--legal-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
}

.legal-sidebar a:last-child {
  border-bottom: 0;
}

.legal-sidebar a:hover {
  color: var(--legal-gold-light);
  padding-left: 4px;
}

.legal-footer {
  padding: 48px 0 22px;
  border-top: 1px solid rgba(215, 182, 104, 0.22);
  background:
    radial-gradient(circle at 8% 18%, rgba(52, 119, 122, 0.13), transparent 29%),
    linear-gradient(145deg, #050e13 0%, #071a21 48%, #040c11 100%);
}

.legal-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 30px;
}

.legal-footer-brand {
  max-width: 500px;
}

.legal-footer-brand img {
  width: 205px;
  margin-bottom: 16px;
}

.legal-footer-brand p {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.75;
}

.legal-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(155px, 1fr));
  gap: 10px 26px;
}

.legal-footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
}

.legal-footer-links a:hover {
  color: var(--legal-gold-light);
}

.legal-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

@media (max-width: 900px) {
  .legal-page {
    padding-top: 68px;
  }

  .legal-header-nav {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-footer-top,
  .legal-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .legal-container {
    width: calc(100% - 28px);
  }

  .legal-hero {
    padding: 72px 0 62px;
  }

  .legal-main {
    padding: 54px 0 74px;
  }

  .legal-article {
    padding: 27px 22px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-footer-links {
    grid-template-columns: 1fr;
  }
}
