/* =========================================================================
   Azure Bay Resort & Casino — design system
   Light, airy Jersey Shore boutique palette: warm sand background, deep
   cobalt-teal ink, coral accent. Inverse type pairing (geometric sans for
   display, refined serif for body) instead of the usual serif-headline
   convention. Organic blob panels, wave-shaped section seams, pill
   buttons, and a bento-grid amenity layout — no framework, no CDN fonts.
   ========================================================================= */

:root {
  --abr-ink: #0b2733;
  --abr-ink-soft: #3c5763;
  --abr-ink-faint: #6f8892;
  --abr-cobalt-900: #0a3d52;
  --abr-cobalt-700: #115577;
  --abr-cobalt-500: #1c7a9c;
  --abr-teal-600: #147a72;
  --abr-teal-400: #3fb3a4;
  --abr-teal-200: #a9dfd4;
  --abr-coral-600: #d94a34;
  --abr-coral-500: #ef6351;
  --abr-coral-400: #ff8a72;
  --abr-sand-50: #fdfaf3;
  --abr-sand-100: #f6ecd9;
  --abr-sand-200: #ecdcbe;
  --abr-white: #ffffff;
  --abr-line: rgba(10, 61, 82, 0.10);
  --abr-line-strong: rgba(10, 61, 82, 0.20);

  --abr-font-display: 'Avenir Next', 'Century Gothic', Futura, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --abr-font-body: Charter, 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;

  --abr-wrap-w: 1240px;
  --abr-radius-sm: 12px;
  --abr-radius: 22px;
  --abr-radius-pill: 999px;
  --abr-shadow-sm: 0 8px 22px rgba(10, 40, 55, 0.08);
  --abr-shadow-md: 0 24px 52px rgba(10, 40, 55, 0.14);
  --abr-shadow-coral: 0 18px 40px rgba(217, 74, 52, 0.28);
  --abr-ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.abr-body {
  margin: 0;
  font-family: var(--abr-font-body);
  color: var(--abr-ink-soft);
  background: var(--abr-sand-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--abr-font-display);
  color: var(--abr-cobalt-900);
  line-height: 1.14;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--abr-ink-soft); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.abr-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--abr-coral-500);
  color: var(--abr-white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.abr-skip:focus { left: 1em; top: 1em; }

.abr-wrap {
  width: 100%;
  max-width: var(--abr-wrap-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons (pill, lowercase weight-driven, not caps/tracking) ---------- */
.abr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.95em 1.85em;
  border-radius: var(--abr-radius-pill);
  font-family: var(--abr-font-display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform var(--abr-ease), box-shadow var(--abr-ease), background var(--abr-ease), color var(--abr-ease), border-color var(--abr-ease);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.abr-btn--coral {
  background: linear-gradient(135deg, var(--abr-coral-500), var(--abr-coral-600));
  color: var(--abr-white);
}
.abr-btn--coral:hover { transform: translateY(-2px); box-shadow: var(--abr-shadow-coral); }
.abr-btn--outline {
  background: transparent;
  border-color: var(--abr-line-strong);
  color: var(--abr-cobalt-900);
}
.abr-btn--outline:hover { border-color: var(--abr-coral-500); color: var(--abr-coral-600); transform: translateY(-2px); }
.abr-btn--dark {
  background: var(--abr-cobalt-900);
  color: var(--abr-sand-50);
  border-color: var(--abr-cobalt-900);
}
.abr-btn--dark:hover { background: var(--abr-teal-600); border-color: var(--abr-teal-600); transform: translateY(-2px); }
.abr-btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Announcement bar ---------- */
.abr-announce { background: var(--abr-coral-500); color: var(--abr-white); }
.abr-announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font-size: 0.78rem;
  font-weight: 600;
}
.abr-announce__msg { display: flex; align-items: center; gap: 8px; }
.abr-announce__phone { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) { .abr-announce { display: none; } }

/* ---------- Header (grid layout: brand / nav / actions) ---------- */
.abr-header {
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--abr-line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.abr-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 84px;
}
.abr-brand { display: flex; align-items: center; gap: 12px; }
.abr-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--abr-white);
  font-family: var(--abr-font-display);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--abr-teal-600), var(--abr-cobalt-900));
}
.abr-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.abr-brand__name { color: var(--abr-cobalt-900); font-family: var(--abr-font-display); font-size: 1.24rem; font-weight: 800; }
.abr-brand__tag { color: var(--abr-coral-600); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

.abr-nav { justify-self: center; }
.abr-nav__list { display: flex; align-items: center; gap: 26px; }
.abr-nav__item > a {
  color: var(--abr-ink-soft);
  font-family: var(--abr-font-display);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color var(--abr-ease), color var(--abr-ease);
}
.abr-nav__item > a:hover,
.abr-nav__item.is-active > a { border-color: var(--abr-coral-500); color: var(--abr-cobalt-900); }
.abr-nav__close { display: none; }

.abr-header__actions { display: flex; align-items: center; gap: 14px; justify-self: end; }
.abr-header__cta { padding: 0.68em 1.5em; font-size: 0.82rem; }

.abr-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 320;
}
.abr-nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--abr-cobalt-900);
  transition: transform var(--abr-ease), opacity var(--abr-ease);
}
.abr-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.abr-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.abr-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.abr-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 40, 55, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--abr-ease);
  z-index: 290;
}
.abr-nav-scrim.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .abr-nav-toggle { display: flex; }
  .abr-nav {
    position: fixed;
    inset: 0 25% 0 0;
    background: var(--abr-sand-50);
    border-right: 1px solid var(--abr-line-strong);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    transform: translateX(-100%);
    transition: transform var(--abr-ease);
    z-index: 300;
    justify-self: auto;
  }
  .abr-nav.is-open { transform: translateX(0); }
  .abr-nav__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--abr-sand-100);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--abr-cobalt-900);
    cursor: pointer;
  }
  .abr-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .abr-nav__item { width: 100%; border-bottom: 1px solid var(--abr-line); }
  .abr-nav__item > a { display: block; padding: 16px 0; font-size: 1.06rem; border-bottom: none; }
  .abr-header__cta { display: none; }
}
@media (max-width: 460px) { .abr-nav { inset: 0 15% 0 0; padding: 32px 24px; } }

/* ---------- Hero (asymmetric: blob panel left, copy right) ---------- */
.abr-hero { padding: 64px 0 0; overflow: hidden; }
.abr-hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 76px;
}
.abr-hero__art { position: relative; min-height: 420px; }
.abr-hero__blob {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 61% 39% / 45% 40% 60% 55%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), transparent 46%),
    linear-gradient(150deg, var(--abr-teal-600), var(--abr-cobalt-900) 70%);
  box-shadow: var(--abr-shadow-md);
}
.abr-hero__blob::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
}
.abr-hero__float {
  position: absolute;
  bottom: -26px;
  right: -18px;
  width: 240px;
  background: var(--abr-white);
  border-radius: var(--abr-radius);
  box-shadow: var(--abr-shadow-md);
  padding: 22px;
}
.abr-hero__float-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--abr-ink-faint); font-weight: 700; margin-bottom: 12px; }
.abr-hero__float-row { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px dashed var(--abr-line); font-size: 0.86rem; }
.abr-hero__float-row:first-of-type { border-top: none; }
.abr-hero__float-row span:first-child { color: var(--abr-ink-faint); }
.abr-hero__float-row span:last-child { color: var(--abr-cobalt-900); font-weight: 700; }

.abr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--abr-coral-600);
  font-family: var(--abr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.abr-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.5rem); max-width: 15ch; }
.abr-hero__lede { font-size: 1.1rem; max-width: 52ch; }
.abr-hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.abr-hero__facts { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.abr-hero__fact strong { display: block; font-family: var(--abr-font-display); font-size: 1.5rem; color: var(--abr-cobalt-900); }
.abr-hero__fact span { font-size: 0.78rem; color: var(--abr-ink-faint); }

@media (max-width: 940px) {
  .abr-hero__grid { grid-template-columns: 1fr; padding-bottom: 50px; }
  .abr-hero__art { min-height: 300px; order: 2; margin-top: 40px; }
  .abr-hero__float { position: static; margin-top: -50px; margin-left: auto; }
}

/* ---------- Wave divider (organic seam between sections) ---------- */
.abr-wave { height: 54px; }
.abr-wave--sand { background: var(--abr-sand-100); clip-path: polygon(0 40%, 8% 30%, 17% 42%, 26% 26%, 35% 40%, 44% 24%, 53% 40%, 62% 26%, 71% 42%, 80% 28%, 89% 42%, 100% 30%, 100% 100%, 0 100%); }
.abr-wave--cobalt { background: var(--abr-cobalt-900); clip-path: polygon(0 40%, 8% 30%, 17% 42%, 26% 26%, 35% 40%, 44% 24%, 53% 40%, 62% 26%, 71% 42%, 80% 28%, 89% 42%, 100% 30%, 100% 100%, 0 100%); }

/* ---------- Stats strip ---------- */
.abr-stats-strip { background: var(--abr-sand-100); }
.abr-stats-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.abr-stat { text-align: center; border-left: 1px solid var(--abr-line-strong); padding: 4px 12px; }
.abr-stat:first-child { border-left: none; }
.abr-stat__num { display: block; font-family: var(--abr-font-display); font-size: 1.8rem; font-weight: 800; color: var(--abr-coral-600); }
.abr-stat__label { font-size: 0.76rem; color: var(--abr-ink-faint); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 780px) {
  .abr-stats-strip__row { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .abr-stat:nth-child(3) { border-left: none; }
}

/* ---------- Page header (non-home) ---------- */
.abr-page-header {
  position: relative;
  background: linear-gradient(160deg, var(--abr-sand-100), var(--abr-sand-50) 60%);
  padding: 56px 0 62px;
}
.abr-breadcrumb { color: var(--abr-coral-600); font-family: var(--abr-font-display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; display: block; }
.abr-page-header h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 22ch; }
.abr-page-header .abr-lede { color: var(--abr-ink-soft); max-width: 62ch; font-size: 1.04rem; margin: 0; }

/* ---------- Sections ---------- */
.abr-section { padding: 78px 0; }
.abr-section--alt { background: var(--abr-sand-100); }
.abr-section--dark { background: var(--abr-cobalt-900); color: var(--abr-sand-100); }
.abr-section--dark h2, .abr-section--dark h3 { color: var(--abr-white); }
.abr-section--dark p { color: rgba(246, 236, 217, 0.78); }
.abr-section--tight { padding: 54px 0; }
.abr-section__head { max-width: 660px; margin: 0 auto 46px; text-align: center; }
.abr-section__head.abr-left { margin: 0 0 38px; text-align: left; }
.abr-eyebrow {
  display: inline-block;
  color: var(--abr-coral-600);
  font-family: var(--abr-font-display);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.abr-section__head h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); margin-top: 10px; }
.abr-section__head p { font-size: 1.02rem; }

/* ---------- Grid / bento cards ---------- */
.abr-grid { display: grid; gap: 24px; }
.abr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.abr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.abr-grid--4 { grid-template-columns: repeat(4, 1fr); }
.abr-grid--bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
.abr-grid--bento .abr-tile--wide { grid-column: span 2; }
@media (max-width: 960px) { .abr-grid--3, .abr-grid--4, .abr-grid--bento { grid-template-columns: repeat(2, 1fr); } .abr-grid--bento .abr-tile--wide { grid-column: span 2; } }
@media (max-width: 640px) { .abr-grid--2, .abr-grid--3, .abr-grid--4, .abr-grid--bento { grid-template-columns: 1fr; } .abr-grid--bento .abr-tile--wide { grid-column: span 1; } }

.abr-card {
  background: var(--abr-white);
  border-radius: var(--abr-radius);
  padding: 30px 26px;
  box-shadow: var(--abr-shadow-sm);
  border-top: 4px solid var(--abr-coral-500);
  transition: transform var(--abr-ease), box-shadow var(--abr-ease);
}
.abr-card:hover { transform: translateY(-5px); box-shadow: var(--abr-shadow-md); }
.abr-card--teal { border-top-color: var(--abr-teal-600); }
.abr-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--abr-teal-600), var(--abr-cobalt-900));
  color: var(--abr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--abr-font-display);
  font-weight: 800;
  margin-bottom: 18px;
}
.abr-card h3 { font-size: 1.2rem; }
.abr-card p:last-child { margin-bottom: 0; }
.abr-card__link { display: inline-block; margin-top: 12px; color: var(--abr-coral-600); font-family: var(--abr-font-display); font-weight: 700; font-size: 0.86rem; border-bottom: 1.5px solid transparent; transition: border-color var(--abr-ease); }
.abr-card__link:hover { border-color: var(--abr-coral-500); }

/* ---------- Bar meters (satisfaction / occupancy visuals) ---------- */
.abr-bars { display: flex; flex-direction: column; gap: 20px; }
.abr-bar-row__label { display: flex; justify-content: space-between; font-size: 0.87rem; color: var(--abr-ink-soft); margin-bottom: 7px; }
.abr-bar-row__label strong { color: var(--abr-cobalt-900); }
.abr-bar-track { height: 9px; background: var(--abr-sand-200); border-radius: var(--abr-radius-pill); overflow: hidden; }
.abr-bar-fill { height: 100%; border-radius: var(--abr-radius-pill); background: linear-gradient(90deg, var(--abr-coral-400), var(--abr-coral-600)); }
.abr-bar-fill--teal { background: linear-gradient(90deg, var(--abr-teal-400), var(--abr-teal-600)); }

/* ---------- Stepper (booking / process steps) ---------- */
.abr-stepper { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: abrstep; }
.abr-stepper::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--abr-line-strong) 50%, transparent 50%);
  background-size: 14px 2px;
  z-index: 0;
}
@media (max-width: 900px) { .abr-stepper { grid-template-columns: repeat(2, 1fr); } .abr-stepper::before { display: none; } }
@media (max-width: 560px) { .abr-stepper { grid-template-columns: 1fr; } }
.abr-stepper__item { position: relative; z-index: 1; }
.abr-stepper__num {
  counter-increment: abrstep;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--abr-white);
  border: 2px solid var(--abr-coral-500);
  color: var(--abr-coral-600);
  font-family: var(--abr-font-display);
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--abr-shadow-sm);
}
.abr-stepper__num::before { content: counter(abrstep); }
.abr-stepper__item h3 { font-size: 1.06rem; }

/* ---------- Table (rates / spec sheets) ---------- */
.abr-table-wrap { overflow-x: auto; border-radius: var(--abr-radius); box-shadow: var(--abr-shadow-sm); }
.abr-table { width: 100%; border-collapse: collapse; background: var(--abr-white); min-width: 560px; }
.abr-table th, .abr-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--abr-line); font-size: 0.92rem; }
.abr-table thead th { background: var(--abr-cobalt-900); color: var(--abr-sand-100); font-family: var(--abr-font-display); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; }
.abr-table tbody tr:hover { background: var(--abr-sand-100); }
.abr-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing / rate cards ---------- */
.abr-pricing-card { display: flex; flex-direction: column; }
.abr-pricing-card .abr-price { font-family: var(--abr-font-display); font-size: 2.15rem; font-weight: 800; color: var(--abr-cobalt-900); margin: 10px 0 4px; }
.abr-pricing-card .abr-price span { font-family: var(--abr-font-body); font-size: 0.86rem; color: var(--abr-ink-faint); font-weight: 500; }
.abr-pricing-card ul { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.abr-pricing-card li { padding-left: 26px; position: relative; font-size: 0.9rem; color: var(--abr-ink-soft); }
.abr-pricing-card li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--abr-teal-600); font-weight: 700; }
.abr-pricing-card--featured { border-top-color: var(--abr-coral-600); box-shadow: var(--abr-shadow-coral); position: relative; }
.abr-pricing-card--featured::after {
  content: "Guest Favorite";
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--abr-coral-500);
  color: var(--abr-white);
  font-family: var(--abr-font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--abr-radius-pill);
}

/* ---------- Testimonials ---------- */
.abr-testimonial {
  background: var(--abr-white);
  border-radius: var(--abr-radius);
  padding: 32px 28px;
  box-shadow: var(--abr-shadow-sm);
  position: relative;
}
.abr-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--abr-font-display);
  font-size: 3.4rem;
  color: var(--abr-sand-200);
  line-height: 1;
}
.abr-testimonial p { color: var(--abr-ink-soft); font-size: 0.98rem; position: relative; }
.abr-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.abr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--abr-teal-600), var(--abr-cobalt-900));
  color: var(--abr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--abr-font-display);
  font-weight: 800;
}
.abr-testimonial__author strong { display: block; color: var(--abr-cobalt-900); font-size: 0.94rem; }
.abr-testimonial__author span { font-size: 0.78rem; color: var(--abr-ink-faint); }
.abr-rating-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--abr-sand-100); color: var(--abr-cobalt-900); font-family: var(--abr-font-display); font-weight: 800; font-size: 0.84rem; padding: 5px 12px; border-radius: var(--abr-radius-pill); margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.abr-cta {
  background: linear-gradient(135deg, var(--abr-cobalt-900), var(--abr-teal-600));
  position: relative;
  text-align: center;
  padding: 70px 0;
  overflow: hidden;
}
.abr-cta::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(239, 99, 81, 0.22);
  pointer-events: none;
}
.abr-cta__inner { position: relative; }
.abr-cta h2 { color: var(--abr-white); }
.abr-cta p { color: rgba(246, 236, 217, 0.82); max-width: 56ch; margin: 0 auto 28px; }
.abr-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.abr-team-card { text-align: center; }
.abr-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--abr-teal-600), var(--abr-cobalt-900));
  color: var(--abr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--abr-font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.abr-team-role { color: var(--abr-coral-600); font-family: var(--abr-font-display); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; display: block; }

/* ---------- Amenity tiles (bento) ---------- */
.abr-amenity-tile {
  border-radius: var(--abr-radius);
  background: var(--abr-white);
  box-shadow: var(--abr-shadow-sm);
  padding: 26px;
  transition: transform var(--abr-ease), box-shadow var(--abr-ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
}
.abr-amenity-tile:hover { transform: translateY(-4px); box-shadow: var(--abr-shadow-md); }
.abr-amenity-tile__mark {
  font-family: var(--abr-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--abr-white);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--abr-coral-500), var(--abr-coral-600));
}
.abr-amenity-tile--teal .abr-amenity-tile__mark { background: linear-gradient(135deg, var(--abr-teal-400), var(--abr-teal-600)); }
.abr-amenity-tile strong { display: block; color: var(--abr-cobalt-900); margin-bottom: 4px; font-family: var(--abr-font-display); }
.abr-amenity-tile span { font-size: 0.84rem; color: var(--abr-ink-faint); }

/* ---------- Gallery (CSS-only polaroid tiles, no photography) ---------- */
.abr-gallery-tile {
  position: relative;
  border-radius: 6px;
  background: var(--abr-white);
  padding: 10px 10px 44px;
  box-shadow: var(--abr-shadow-md);
  transform: rotate(var(--abr-tilt, -1.4deg));
  transition: transform var(--abr-ease);
}
.abr-gallery-tile:hover { transform: rotate(0deg) scale(1.02); }
.abr-gallery-tile__scene { border-radius: 3px; min-height: 190px; display: flex; align-items: flex-end; padding: 14px; }
.abr-gallery-tile__scene span { color: var(--abr-white); font-family: var(--abr-font-display); font-weight: 700; font-size: 0.92rem; text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.abr-gallery-tile figcaption { text-align: center; font-family: var(--abr-font-display); font-size: 0.8rem; color: var(--abr-ink-soft); padding-top: 10px; }
.abr-gallery-tile--1 { --abr-tilt: -2deg; }
.abr-gallery-tile--2 { --abr-tilt: 1.6deg; }
.abr-gallery-tile--3 { --abr-tilt: -1deg; }
.abr-gallery-tile--4 { --abr-tilt: 2deg; }
.abr-gallery-tile--5 { --abr-tilt: -1.8deg; }
.abr-gallery-tile--6 { --abr-tilt: 1.2deg; }
.abr-gallery-tile--7 { --abr-tilt: -2.2deg; }
.abr-gallery-tile--8 { --abr-tilt: 1.8deg; }
.abr-gallery-tile--9 { --abr-tilt: -1.4deg; }
.abr-gallery-tile--1 .abr-gallery-tile__scene { background: radial-gradient(circle at 20% 20%, rgba(63,179,164,0.55), transparent 55%), linear-gradient(135deg, #0a3d52, #115577); }
.abr-gallery-tile--2 .abr-gallery-tile__scene { background: radial-gradient(circle at 80% 30%, rgba(239,99,81,0.5), transparent 55%), linear-gradient(135deg, #115577, #1c7a9c); }
.abr-gallery-tile--3 .abr-gallery-tile__scene { background: radial-gradient(circle at 50% 80%, rgba(63,179,164,0.4), transparent 60%), linear-gradient(135deg, #0a3d52, #147a72); }
.abr-gallery-tile--4 .abr-gallery-tile__scene { background: radial-gradient(circle at 30% 70%, rgba(255,138,114,0.4), transparent 55%), linear-gradient(135deg, #147a72, #0a3d52); }
.abr-gallery-tile--5 .abr-gallery-tile__scene { background: radial-gradient(circle at 70% 20%, rgba(63,179,164,0.5), transparent 55%), linear-gradient(135deg, #1c7a9c, #0a3d52); }
.abr-gallery-tile--6 .abr-gallery-tile__scene { background: radial-gradient(circle at 40% 40%, rgba(239,99,81,0.4), transparent 55%), linear-gradient(135deg, #0a3d52, #1c7a9c); }
.abr-gallery-tile--7 .abr-gallery-tile__scene { background: radial-gradient(circle at 60% 60%, rgba(63,179,164,0.45), transparent 55%), linear-gradient(135deg, #115577, #0a3d52); }
.abr-gallery-tile--8 .abr-gallery-tile__scene { background: radial-gradient(circle at 25% 55%, rgba(255,138,114,0.4), transparent 55%), linear-gradient(135deg, #147a72, #115577); }
.abr-gallery-tile--9 .abr-gallery-tile__scene { background: radial-gradient(circle at 75% 75%, rgba(63,179,164,0.4), transparent 55%), linear-gradient(135deg, #0a3d52, #147a72); }

/* ---------- FAQ (details/summary, no JS) ---------- */
.abr-faq-item {
  background: var(--abr-white);
  border-radius: var(--abr-radius-sm);
  box-shadow: var(--abr-shadow-sm);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.abr-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--abr-font-display);
  color: var(--abr-cobalt-900);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.abr-faq-item summary::-webkit-details-marker { display: none; }
.abr-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--abr-sand-100);
  color: var(--abr-coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.abr-faq-item[open] summary::after { content: "\2212"; }
.abr-faq-item p { margin-top: 14px; margin-bottom: 0; }

/* ---------- Forms ---------- */
.abr-form-card {
  background: var(--abr-white);
  border-radius: var(--abr-radius);
  padding: 36px;
  box-shadow: var(--abr-shadow-md);
}
.abr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .abr-form-row { grid-template-columns: 1fr; } }
.abr-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.abr-form-field label { font-weight: 700; font-family: var(--abr-font-display); font-size: 0.86rem; color: var(--abr-cobalt-900); }
.abr-form-field input,
.abr-form-field select,
.abr-form-field textarea {
  font-family: var(--abr-font-body);
  font-size: 0.96rem;
  padding: 12px 15px;
  border: 1.5px solid var(--abr-line-strong);
  border-radius: var(--abr-radius-sm);
  background: var(--abr-sand-50);
  color: var(--abr-ink);
  transition: border-color var(--abr-ease), box-shadow var(--abr-ease);
}
.abr-form-field input:focus,
.abr-form-field select:focus,
.abr-form-field textarea:focus {
  outline: none;
  border-color: var(--abr-coral-500);
  box-shadow: 0 0 0 4px rgba(239, 99, 81, 0.14);
}
.abr-form-note { font-size: 0.84rem; color: var(--abr-ink-faint); }

/* ---------- Locate panel (contact / booking) ---------- */
.abr-locate {
  position: relative;
  height: 220px;
  border-radius: var(--abr-radius);
  background: var(--abr-cobalt-900);
  overflow: hidden;
}
.abr-locate--lg { height: 300px; }
.abr-locate__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.abr-locate__pin {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--abr-coral-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 9px rgba(239, 99, 81, 0.22);
}
.abr-locate__coords {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: rgba(246, 236, 217, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.abr-locate__label {
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--abr-teal-200);
  font-family: var(--abr-font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Blog ---------- */
.abr-post-card { display: flex; flex-direction: column; }
.abr-post-meta { font-family: var(--abr-font-display); font-size: 0.76rem; color: var(--abr-coral-600); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; font-weight: 700; }
.abr-post-card h3 { font-size: 1.16rem; }
.abr-article { max-width: 740px; margin: 0 auto; }
.abr-article h2 { margin-top: 1.6em; font-size: 1.5rem; }
.abr-article h3 { margin-top: 1.3em; font-size: 1.16rem; }
.abr-article ul, .abr-article ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--abr-ink-soft); }
.abr-article li { margin-bottom: 0.5em; }
.abr-article blockquote {
  border-left: 3px solid var(--abr-coral-500);
  margin: 1.7em 0;
  padding: 0.4em 0 0.4em 1.5em;
  font-style: italic;
  color: var(--abr-cobalt-900);
  font-size: 1.08rem;
}
.abr-article-header { text-align: center; margin-bottom: 38px; }
.abr-article-header .abr-post-meta { margin-bottom: 14px; }

/* ---------- Footer (dark bookend) ---------- */
.abr-footer { background: var(--abr-cobalt-900); color: rgba(246, 236, 217, 0.66); padding: 64px 0 0; }
.abr-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(246, 236, 217, 0.14);
}
@media (max-width: 960px) { .abr-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .abr-footer__top { grid-template-columns: 1fr; } }
.abr-footer__col h3 { color: var(--abr-teal-200); font-family: var(--abr-font-display); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.abr-footer__brand .abr-brand__name { display: block; color: var(--abr-white); font-family: var(--abr-font-display); font-size: 1.3rem; margin-bottom: 14px; }
.abr-footer__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.abr-tag {
  border: 1px solid rgba(246, 236, 217, 0.22);
  border-radius: var(--abr-radius-pill);
  padding: 6px 14px;
  font-size: 0.72rem;
  color: var(--abr-teal-200);
  display: inline-block;
  width: fit-content;
}
.abr-footer address { font-size: 0.9rem; margin-bottom: 10px; }
.abr-footer a:hover { color: var(--abr-coral-400); }
.abr-hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; padding: 4px 0; }
.abr-footer__links li { margin-bottom: 9px; font-size: 0.88rem; }
.abr-footer__bottom { padding: 22px 0; }
.abr-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.76rem; }

/* ---------- 404 ---------- */
.abr-error { text-align: center; padding: 110px 0; }
.abr-error .abr-error-code { font-family: var(--abr-font-display); font-size: 6rem; font-weight: 800; color: var(--abr-coral-500); line-height: 1; }
.abr-error h1 { margin-top: 10px; }

/* ---------- Reveal on scroll ----------
   Gated behind html.js-on (set by an inline script in inc/header.php) so
   crawlers and no-JS visitors always see full content at opacity: 1. */
.abr-reveal { opacity: 1; transform: none; }
html.js-on .abr-reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
html.js-on .abr-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.abr-text-center { text-align: center; }
.abr-mt-0 { margin-top: 0; }
.abr-mb-0 { margin-bottom: 0; }
.abr-check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.abr-check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--abr-teal-600); font-weight: 700; }
.abr-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 800px) { .abr-two-col { grid-template-columns: 1fr; } }
.abr-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
