/* ============================================================
   AmazingMoments — global stylesheet
   Light premium theme on top of Bootstrap 5.3.3 (library-first).
   Custom classes follow BEM: .am-block__element--modifier
   ============================================================ */

/* ------------------------------------------------------------
   Design tokens
   TODO: if the palette ever changes, edit only the tokens below
   ------------------------------------------------------------ */
:root {
  --am-ivory: #F6F2EA;
  --am-cream: #FFFDF8;
  --am-sand: #EDE5D5;
  --am-pine: #14524A;
  --am-pine-deep: #0E3B35;
  --am-amber: #D9822B;
  --am-amber-soft: #F3D9B7;
  --am-ink: #20312C;
  --am-muted: #63706A;
  --am-line: rgba(20, 82, 74, .16);

  /* Bootstrap variable overrides (light warm theme, not black/white) */
  --bs-body-bg: var(--am-ivory);
  --bs-body-color: var(--am-ink);
  --bs-body-font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bs-primary: var(--am-pine);
  --bs-primary-rgb: 20, 82, 74;
  --bs-link-color: var(--am-pine);
  --bs-link-color-rgb: 20, 82, 74;
  --bs-link-hover-color: var(--am-amber);
  --bs-border-radius: 18px;
  --bs-border-color: var(--am-line);
}

/* ------------------------------------------------------------
   Base typography
   ------------------------------------------------------------ */
html { scroll-behavior: smooth; }
body {
  font-family: var(--bs-body-font-family);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .am-display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--am-ink);
}
p { line-height: 1.7; }
a { text-decoration: none; }
img { max-width: 100%; }

.am-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--am-amber);
}
.am-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--am-amber);
  border-radius: 2px;
}
.am-title { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12; }
.am-lead { font-size: 1.08rem; color: var(--am-muted); }
.am-section--deep .am-lead { color: rgba(255, 255, 255, .75); }
.am-italic { font-style: italic; color: var(--am-pine); }
.am-section--deep .am-italic { color: var(--am-amber-soft); }

/* ------------------------------------------------------------
   Buttons (built on the Bootstrap button variable API)
   ------------------------------------------------------------ */
.am-btn {
  --bs-btn-font-weight: 700;
  --bs-btn-border-radius: 999px;
  --bs-btn-padding-x: 1.55rem;
  --bs-btn-padding-y: .78rem;
  --bs-btn-font-size: .95rem;
}
.am-btn--sm { --bs-btn-padding-x: 1.15rem; --bs-btn-padding-y: .5rem; --bs-btn-font-size: .85rem; }
.am-btn--primary {
  --bs-btn-bg: var(--am-pine);
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--am-pine);
  --bs-btn-hover-bg: var(--am-pine-deep);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--am-pine-deep);
  --bs-btn-active-bg: var(--am-pine-deep);
  --bs-btn-active-color: #fff;
  --bs-btn-focus-shadow-rgb: 20, 82, 74;
}
.am-btn--amber {
  --bs-btn-bg: var(--am-amber);
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--am-amber);
  --bs-btn-hover-bg: #BE6E1E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #BE6E1E;
  --bs-btn-active-bg: #BE6E1E;
  --bs-btn-active-color: #fff;
  --bs-btn-focus-shadow-rgb: 217, 130, 43;
}
.am-btn--ghost {
  --bs-btn-color: var(--am-pine);
  --bs-btn-border-color: var(--am-line);
  --bs-btn-hover-bg: var(--am-pine);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--am-pine);
  --bs-btn-active-bg: var(--am-pine);
  --bs-btn-active-color: #fff;
}
.am-btn--light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .45);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: var(--am-pine);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-color: var(--am-pine);
}

/* ------------------------------------------------------------
   Header: top contact strip + navigation
   ------------------------------------------------------------ */
.am-topbar { background: var(--am-pine-deep); color: rgba(255, 255, 255, .85); font-size: .82rem; }
.am-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  flex-wrap: wrap;
  padding-top: .3rem;
  padding-bottom: .3rem;
}
.am-topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.am-topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255, 255, 255, .85); }
.am-topbar__item i { color: var(--am-amber-soft); }
a.am-topbar__item:hover { color: #fff; }

.am-nav {
  background: rgba(246, 242, 234, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--am-line);
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.am-nav__brand { display: flex; align-items: center; gap: .65rem; }
.am-nav__logo { width: 44px; height: 44px; object-fit: contain; }
.am-nav__brand-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--am-ink);
  letter-spacing: -0.02em;
}
.am-nav__brand-text em { font-style: italic; color: var(--am-amber); }
.am-nav__link {
  font-weight: 600;
  font-size: .93rem;
  color: var(--am-ink);
  padding: .55rem .8rem;
  border-radius: 999px;
}
.am-nav__link:hover, .am-nav__link.is-active { color: var(--am-pine); background: rgba(20, 82, 74, .08); }
.am-nav__toggle {
  border: 1px solid var(--am-line);
  border-radius: 12px;
  padding: .45rem .7rem;
  color: var(--am-pine);
  font-size: 1.15rem;
}
.am-nav__toggle:focus { box-shadow: none; border-color: var(--am-pine); }

/* ------------------------------------------------------------
   Section shells
   ------------------------------------------------------------ */
.am-section { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.am-section--sand { background: var(--am-sand); }
.am-section--cream { background: var(--am-cream); }
.am-section--deep { background: var(--am-pine); color: rgba(255, 255, 255, .86); }
.am-section--deep h1, .am-section--deep h2, .am-section--deep h3, .am-section--deep h4 { color: #fff; }
.am-section--deep .am-eyebrow { color: var(--am-amber-soft); }
.am-section--deep .am-eyebrow::before { background: var(--am-amber-soft); }
.am-section--tight { padding-top: clamp(2.2rem, 5vw, 3.5rem); padding-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.am-bg-cover { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ------------------------------------------------------------
   Decorative elements (pure CSS, no SVG)
   ------------------------------------------------------------ */
.am-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.am-blob--amber { background: radial-gradient(circle, rgba(217, 130, 43, .5), transparent 70%); }
.am-blob--pine { background: radial-gradient(circle, rgba(20, 82, 74, .4), transparent 70%); }
.am-dots {
  background-image: radial-gradient(rgba(20, 82, 74, .22) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  pointer-events: none;
}
.am-section--deep .am-dots { background-image: radial-gradient(rgba(255, 255, 255, .18) 1.6px, transparent 1.6px); }
.am-ring {
  position: absolute;
  border: 2px dashed rgba(20, 82, 74, .3);
  border-radius: 50%;
  pointer-events: none;
}
.am-frame { position: relative; }
.am-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  border: 2px solid var(--am-amber);
  border-radius: var(--bs-border-radius);
  z-index: 0;
  pointer-events: none;
}
.am-frame > img, .am-frame > .am-frame__inner { position: relative; z-index: 1; }
.am-img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.am-media {
  background: linear-gradient(135deg, var(--am-sand), #E3D7BF);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  position: relative;
}
.am-tape {
  display: inline-block;
  background: var(--am-amber);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(217, 130, 43, .8);
}
.am-outline-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 82, 74, .22);
  user-select: none;
}
.am-section--deep .am-outline-text { -webkit-text-stroke: 1.5px rgba(255, 255, 255, .22); }
.am-divider { height: 1px; background: var(--am-line); border: 0; opacity: 1; }

.am-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 999px;
  padding: .4rem .95rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--am-pine);
}
.am-section--deep .am-chip { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); color: #fff; }
.am-badge-18 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--am-ink);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .82rem;
  letter-spacing: .06em;
}

/* ------------------------------------------------------------
   Home hero
   ------------------------------------------------------------ */
.am-hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.am-hero__title { font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.05; }
.am-hero__media { position: relative; z-index: 1; }
.am-hero__main-img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.am-hero__sub-img {
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid var(--am-ivory);
  position: absolute;
  right: -6px;
  bottom: -34px;
  z-index: 2;
  box-shadow: 0 24px 50px -30px rgba(32, 49, 44, .5);
}
.am-float-card {
  position: absolute;
  left: -14px;
  top: 26px;
  z-index: 3;
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 16px;
  padding: .9rem 1.1rem;
  box-shadow: var(--am-shadow, 0 24px 60px -30px rgba(32, 49, 44, .35));
  max-width: 210px;
}
.am-float-card__stars { color: var(--am-amber); font-size: .8rem; letter-spacing: .1em; }
.am-float-card__num { font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.am-hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ------------------------------------------------------------
   Stats band + marquee
   ------------------------------------------------------------ */
.am-stat { text-align: center; padding: 1rem .5rem; }
.am-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}
.am-stat__num span { color: var(--am-amber-soft); }
.am-stat__label { font-size: .88rem; color: rgba(255, 255, 255, .72); margin-top: .35rem; }
.am-marquee { overflow: hidden; position: relative; }
.am-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  white-space: nowrap;
  animation: am-scroll 30s linear infinite;
  padding-right: 3.2rem;
}
.am-marquee__item {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, .8);
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
}
.am-marquee__item::after {
  content: "\f005"; /* FontAwesome star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .7rem;
  color: var(--am-amber-soft);
  font-style: normal;
}
@keyframes am-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   Cards: trips, destinations, casino hotels, events
   ------------------------------------------------------------ */
.am-card {
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.am-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -35px rgba(32, 49, 44, .45); }
.am-card__media { position: relative; aspect-ratio: 16 / 11; background: linear-gradient(135deg, var(--am-sand), #E3D7BF); }
.am-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.am-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 59, 53, .85);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.am-card__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.am-card__meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.am-card__meta-item { font-size: .78rem; font-weight: 700; color: var(--am-muted); display: inline-flex; align-items: center; gap: .4rem; }
.am-card__meta-item i { color: var(--am-amber); }
.am-card__title { font-size: 1.28rem; line-height: 1.25; }
.am-card__text { font-size: .92rem; color: var(--am-muted); flex: 1; }
.am-card__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: auto; padding-top: .9rem; border-top: 1px dashed var(--am-line); }
.am-card__price { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.25rem; color: var(--am-pine); }
.am-card__price small { display: block; font-family: var(--bs-body-font-family); font-size: .72rem; font-weight: 600; color: var(--am-muted); }

/* Destination mosaic tile (inline background-image + overlay) */
.am-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  color: #fff;
  transition: transform .35s ease;
}
.am-tile:hover { transform: scale(1.015); }
.am-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  pointer-events: none;
}
.am-tile__body { position: relative; z-index: 1; }
.am-tile__name { font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: #fff; }
.am-tile__tag { font-size: .8rem; color: rgba(255, 255, 255, .82); }

/* ------------------------------------------------------------
   Steps / features / reviews
   ------------------------------------------------------------ */
.am-step { position: relative; padding: 1.6rem 1.5rem; background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; height: 100%; }
.am-step__num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--am-pine);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.am-step__title { font-size: 1.12rem; margin-bottom: .45rem; }
.am-step__text { font-size: .9rem; color: var(--am-muted); margin-bottom: 0; }

.am-feature { display: flex; gap: 1rem; align-items: flex-start; }
.am-feature__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--am-sand);
  color: var(--am-pine);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.am-section--deep .am-feature__icon { background: rgba(255, 255, 255, .12); color: var(--am-amber-soft); }
.am-feature__title { font-size: 1.05rem; margin-bottom: .3rem; }
.am-feature__text { font-size: .9rem; color: var(--am-muted); margin-bottom: 0; }
.am-section--deep .am-feature__text { color: rgba(255, 255, 255, .72); }

.am-review { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; padding: 1.6rem; height: 100%; display: flex; flex-direction: column; gap: .9rem; }
.am-review__stars { color: var(--am-amber); font-size: .82rem; letter-spacing: .12em; }
.am-review__text { font-size: .95rem; color: var(--am-ink); margin-bottom: 0; }
.am-review__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.am-review__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--am-sand); }
.am-review__name { font-weight: 700; font-size: .92rem; margin-bottom: 0; }
.am-review__from { font-size: .78rem; color: var(--am-muted); margin-bottom: 0; }
.am-rating-box { background: var(--am-pine); border-radius: 20px; color: #fff; padding: 1.8rem; height: 100%; }
.am-rating-box__num { font-family: 'Fraunces', Georgia, serif; font-size: 3.2rem; font-weight: 700; line-height: 1; }

/* ------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------ */
.am-accordion {
  --bs-accordion-border-color: var(--am-line);
  --bs-accordion-border-radius: 18px;
  --bs-accordion-inner-border-radius: 16px;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: var(--am-cream);
  --bs-accordion-active-color: var(--am-pine);
  --bs-accordion-btn-padding-x: 1.3rem;
  --bs-accordion-btn-padding-y: 1.05rem;
}
.am-accordion .accordion-button { font-weight: 700; font-size: .98rem; color: var(--am-ink); background: var(--am-cream); }
.am-accordion .accordion-item { background: var(--am-cream); border-color: var(--am-line); margin-bottom: .7rem; border-radius: 16px !important; overflow: hidden; }
.am-accordion .accordion-body { font-size: .92rem; color: var(--am-muted); }

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.am-form .form-control, .am-form .form-select {
  border-radius: 14px;
  border-color: var(--am-line);
  padding: .8rem 1.05rem;
  background: var(--am-cream);
}
.am-form .form-control:focus, .am-form .form-select:focus {
  border-color: var(--am-pine);
  box-shadow: 0 0 0 .2rem rgba(20, 82, 74, .15);
}
.am-form .form-label { font-weight: 700; font-size: .85rem; margin-bottom: .35rem; }

/* ------------------------------------------------------------
   Booking modal
   ------------------------------------------------------------ */
.am-book { background: var(--am-ivory); border-radius: 24px; border: 1px solid var(--am-line); padding: 2rem; position: relative; }
.am-book__close { position: absolute; top: 1.1rem; right: 1.1rem; background-color: var(--am-sand); border-radius: 50%; padding: .55rem; }
.am-book__title { font-size: 1.55rem; margin: .4rem 0 .3rem; }
.am-book__sub { font-size: .9rem; color: var(--am-muted); margin-bottom: 1.1rem; }
.am-book__trip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--am-sand);
  color: var(--am-pine);
  font-weight: 700;
  font-size: .88rem;
  border-radius: 999px;
  padding: .5rem 1rem;
  margin-bottom: 1.1rem;
}
.am-book__trip i { color: var(--am-amber); }

/* ------------------------------------------------------------
   Toasts + cookie banner
   ------------------------------------------------------------ */
.am-toasts {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
  width: max-content;
  max-width: min(92vw, 460px);
}
.am-toast {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--am-pine-deep);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 14px;
  padding: .85rem 1.25rem;
  box-shadow: 0 22px 44px -22px rgba(14, 59, 53, .7);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
.am-toast.is-visible { opacity: 1; transform: translateY(0); }
.am-toast i { color: var(--am-amber-soft); font-size: 1.05rem; }

.am-cookie {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  z-index: 1080;
  width: min(680px, calc(100% - 2rem));
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(32, 49, 44, .55);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.am-cookie__icon { font-size: 1.6rem; color: var(--am-amber); }
.am-cookie__text { font-size: .88rem; color: var(--am-muted); margin: 0; flex: 1 1 260px; }
.am-cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.am-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--am-pine);
}
.am-chip i { color: var(--am-amber); }
.am-chip--light { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .28); color: #fff; }
.am-chip--light i { color: var(--am-amber-soft); }
a.am-chip--light:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.am-badge-18 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--am-ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.am-badge-18 i { color: var(--am-amber-soft); }

/* ------------------------------------------------------------
   Cards: trips, hotels, events
   ------------------------------------------------------------ */
.am-card {
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.am-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -35px rgba(32, 49, 44, .5); }
.am-card__media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--am-sand), #E0D4BF); }
.am-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.am-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--am-amber);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
}
.am-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.am-card__meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .82rem; font-weight: 700; color: var(--am-muted); }
.am-card__meta i { color: var(--am-amber); margin-right: .3rem; }
.am-card__title { font-size: 1.25rem; line-height: 1.25; }
.am-card__text { font-size: .92rem; color: var(--am-muted); margin: 0; }
.am-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: auto;
  padding-top: .95rem;
  border-top: 1px dashed var(--am-line);
}
.am-card__price { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.2rem; color: var(--am-pine); }
.am-card__price small { display: block; font-family: var(--bs-body-font-family); font-size: .76rem; font-weight: 600; color: var(--am-muted); }

/* Mini hotel card on dark background */
.am-mini-hotel { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -35px rgba(0, 0, 0, .8); }
.am-mini-hotel img { aspect-ratio: 16 / 9; }
.am-mini-hotel__body { position: absolute; inset: auto 0 0 0; padding: 1.1rem 1.2rem; background: linear-gradient(transparent, rgba(10, 25, 22, .9)); }

/* Casino event card */
.am-event { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; padding: 1.5rem; height: 100%; display: flex; flex-direction: column; gap: .5rem; }
.am-event__date {
  align-self: flex-start;
  background: var(--am-sand);
  color: var(--am-pine);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 10px;
  padding: .4rem .8rem;
}
.am-event__date strong { font-size: 1.05rem; }
.am-event__title { font-size: 1.15rem; margin: 0; }
.am-event__text { font-size: .9rem; color: var(--am-muted); margin: 0; }
.am-event__meta { font-size: .8rem; font-weight: 700; color: var(--am-pine); }
.am-event__meta i { color: var(--am-amber); margin-right: .3rem; }

/* Review / rating blocks */
.am-rating-box { background: var(--am-pine); color: #fff; border-radius: 22px; padding: 1.8rem; }
.am-rating-box__num { font-family: 'Fraunces', Georgia, serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.am-rating-box__num span { font-size: 1.2rem; color: var(--am-amber-soft); }
.am-review { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.am-review__stars { color: var(--am-amber); letter-spacing: .12em; font-size: .9rem; }
.am-review__text { font-size: .95rem; margin: 0; }
.am-review__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.am-review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--am-sand); }
.am-review__meta { display: block; font-size: .78rem; color: var(--am-muted); font-weight: 500; }

/* Quote */
.am-quote blockquote { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 1.15rem; color: var(--am-pine); }
.am-quote figcaption { color: var(--am-muted); }

/* Feature block */
.am-feature { display: flex; gap: 1rem; align-items: flex-start; height: 100%; }
.am-feature__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--am-sand);
  color: var(--am-pine);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.am-feature__title { font-size: 1.08rem; margin-bottom: .35rem; }
.am-feature__text { font-size: .9rem; color: var(--am-muted); margin: 0; }

/* Steps */
.am-step { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; padding: 1.7rem 1.5rem; height: 100%; }
.am-step__num {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--am-pine);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.am-step__title { font-size: 1.12rem; margin-bottom: .45rem; }
.am-step__text { font-size: .9rem; color: var(--am-muted); margin: 0; }

/* Note card + check list */
.am-note-card { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; padding: 1.6rem; height: 100%; }
.am-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.am-check-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--am-ink); }
.am-check-list i { color: var(--am-amber); margin-top: .2rem; }

/* Journal card */
.am-journal-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--am-sand);
}
.am-journal-card img { transition: transform .5s ease; }
.am-journal-card:hover img { transform: scale(1.05); }
.am-journal__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--am-pine);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.am-journal__title {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.1rem .9rem;
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(10, 25, 22, .85));
}

/* ------------------------------------------------------------
   18+ / responsible gambling disclaimer (casino pages)
   ------------------------------------------------------------ */
.am-disclaimer {
  background: var(--am-cream);
  border: 1px solid var(--am-line);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.am-disclaimer__title { font-size: 1.15rem; margin-bottom: .6rem; }
.am-disclaimer__list { list-style: disc; padding-left: 1.3rem; display: grid; gap: .45rem; font-size: .92rem; color: var(--am-muted); }
.am-disclaimer__warning {
  background: rgba(196, 74, 58, .08);
  border: 1px solid rgba(178, 58, 44, .25);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
}
.am-disclaimer__warning .am-disclaimer__title { color: #A03226; }

/* ------------------------------------------------------------
   Inner page hero (h1 + lead paragraph right below)
   ------------------------------------------------------------ */
.am-pagehero { position: relative; padding: clamp(3.2rem, 7vw, 5.5rem) 0; overflow: hidden; }
.am-pagehero__crumbs { font-size: .84rem; color: rgba(255, 255, 255, .65); margin-bottom: 1.1rem; }
.am-pagehero__crumbs a { color: rgba(255, 255, 255, .85); }
.am-pagehero__crumbs a:hover { color: var(--am-amber-soft); }
.am-pagehero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; color: #fff; }
.am-pagehero__lead { color: rgba(255, 255, 255, .82); font-size: 1.1rem; max-width: 46rem; margin-top: 1.1rem; }

/* ------------------------------------------------------------
   Big CTA section
   ------------------------------------------------------------ */
.am-cta { position: relative; overflow: hidden; }
.am-cta__inner { position: relative; z-index: 1; }
.am-cta__contact { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.am-footer { background: var(--am-pine-deep); color: rgba(255, 255, 255, .78); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.am-footer h2, .am-footer h3, .am-footer h4, .am-footer .am-footer__heading {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 1.1rem;
}
.am-footer__logo { width: 46px; height: 44px; object-fit: contain; }
.am-footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.am-footer__brand-text { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.am-footer__brand-text em { font-style: italic; color: var(--am-amber-soft); }
.am-footer__about { font-size: .9rem; color: rgba(255, 255, 255, .68); }
.am-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.am-footer__links a { color: rgba(255, 255, 255, .78); font-size: .92rem; transition: color .2s ease; }
.am-footer__links a:hover { color: var(--am-amber-soft); }
.am-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; font-size: .92rem; }
.am-footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.am-footer__contact i { color: var(--am-amber-soft); margin-top: .2rem; }
.am-footer__contact span, .am-footer__contact a { color: rgba(255, 255, 255, .85); }
.am-footer__contact a:hover { color: #fff; }
.am-footer__legal { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; font-size: .88rem; color: rgba(255, 255, 255, .68); }
.am-footer__bottom {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
}
.am-footer__legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.am-footer__bottom a { color: rgba(255, 255, 255, .6); }
.am-footer__bottom a:hover { color: var(--am-amber-soft); }

/* ------------------------------------------------------------
   Timeline (about page)
   ------------------------------------------------------------ */
.am-timeline { position: relative; padding-left: 2rem; border-left: 2px dashed var(--am-line); display: grid; gap: 1.6rem; }
.am-timeline__item { position: relative; padding-left: 1.6rem; }
.am-timeline__item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: .45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--am-amber);
  border: 3px solid var(--am-ivory);
  box-shadow: 0 0 0 2px var(--am-amber);
}
.am-timeline__year { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--am-pine); font-size: 1.15rem; }
.am-timeline__text { font-size: .92rem; color: var(--am-muted); margin: .25rem 0 0; }

/* Team card */
.am-team-card { background: var(--am-cream); border: 1px solid var(--am-line); border-radius: 20px; overflow: hidden; height: 100%; }
.am-team-card__media { aspect-ratio: 1 / 1.05; background: linear-gradient(135deg, var(--am-sand), #E3D7BF); }
.am-team-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.am-team-card__name { font-size: 1.1rem; margin-bottom: .15rem; }
.am-team-card__role { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--am-amber); margin-bottom: .5rem; }
.am-team-card__text { font-size: .86rem; color: var(--am-muted); margin-bottom: 0; }

/* ------------------------------------------------------------
   Responsive tweaks
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .am-float-card { position: static; max-width: none; margin-top: 1rem; }
  .am-hero__sub-img { display: none; }
  .am-topbar__item--mail { display: inline-flex; } /* keep email visible on mobile per spec */
}
@media (max-width: 575.98px) {
  .am-float-card { display: none; }
  .am-frame::before { transform: translate(10px, 10px); }
}
@media (prefers-reduced-motion: reduce) {
  .am-marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}
