/* ==========================================================================
   Atulya Hospitality — theme stylesheet
   Single, section-commented stylesheet. No inline styles anywhere in the
   theme templates — every visual rule lives here, keyed to the tokens in
   tokens.css. Class prefix: atl-
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* overflow-x: clip (not "hidden") is intentional — "hidden" forces the
   browser to implicitly treat overflow-y as "auto" too, which creates an
   extra scroll container and silently breaks position:sticky (e.g. the
   single hotel page's booking sidebar) sitewide. clip suppresses horizontal
   overflow the same way without that side effect. */
html { overflow-x: clip; }

body {
  margin: 0;
  background: var(--atl-cream);
  color: var(--atl-ink-900);
  font-family: var(--atl-font-body) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}

/* !important here and on the heading rule below is intentional: this is the
   theme's base typography reset, and Blocksy generates its own dynamic
   typography CSS from the Customizer with selectors specific/late enough to
   otherwise win the cascade over a plain low-specificity element selector. */
h1, h2, h3, h4, h5, h6 { font-family: var(--atl-font-display) !important; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

a { color: var(--atl-gold-deep, #c97a1a); text-decoration: none; }
a:hover { color: #a8630f; }

::placeholder { color: #c7b896; opacity: .7; }
::selection { background: #e8a427; color: var(--atl-ink-900); }
*:focus-visible { outline: 2px solid #e8a427; outline-offset: 2px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--atl-outline); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--atl-gold-deep); }

.atl-hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.atl-hide-scrollbar::-webkit-scrollbar { display: none; }

@keyframes atl-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes atl-fade-in-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   2. Layout: container, 12-col grid, flex utilities, spacing
   -------------------------------------------------------------------------- */
.atl-container { width: 100%; max-width: var(--atl-max-page); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.atl-container-content { width: 100%; max-width: var(--atl-max-content); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.atl-container-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

@media (min-width: 768px) {
  .atl-container, .atl-container-content, .atl-container-narrow { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .atl-container, .atl-container-content, .atl-container-narrow { padding: 0 64px; }
}

/* minmax(0, 1fr) (not bare 1fr) + min-width:0 on children — without both,
   a grid item that contains wide content (e.g. an overflow-x:auto slider)
   or, on narrow viewports, the grid's own fixed-px gaps refuse to shrink
   and the whole row blows out past the container instead of wrapping/
   scrolling internally. See the mobile gap cap below for the other half
   of this — gaps are a fixed length rendered between every column line
   regardless of track size, so 11 gaps at full desktop size can alone
   exceed a phone-width container even with a single spanning column. */
.atl-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.atl-grid > * { min-width: 0; }
.atl-grid-dense { grid-auto-flow: dense; }

.atl-gap-1 { gap: 4px; } .atl-gap-2 { gap: 8px; }
.atl-gap-3 { gap: 12px; } .atl-gap-4 { gap: 16px; } .atl-gap-5 { gap: 20px; }
.atl-gap-6 { gap: 24px; } .atl-gap-8 { gap: 32px; } .atl-gap-10 { gap: 40px; }
.atl-gap-12 { gap: 48px; } .atl-gap-16 { gap: 64px; }
@media (max-width: 767px) {
  .atl-gap-5, .atl-gap-6, .atl-gap-8, .atl-gap-10, .atl-gap-12, .atl-gap-16 { gap: 16px; }
}

/* 12-column span utilities, mobile-first with md (768px) / lg (1024px) overrides */
.atl-col-12 { grid-column: span 12; }
.atl-col-8 { grid-column: span 8; }
.atl-col-6 { grid-column: span 6; }
.atl-col-4 { grid-column: span 4; }

@media (min-width: 768px) {
  .atl-md-col-1 { grid-column: span 1; } .atl-md-col-2 { grid-column: span 2; }
  .atl-md-col-3 { grid-column: span 3; } .atl-md-col-4 { grid-column: span 4; }
  .atl-md-col-5 { grid-column: span 5; } .atl-md-col-6 { grid-column: span 6; }
  .atl-md-col-7 { grid-column: span 7; } .atl-md-col-8 { grid-column: span 8; }
  .atl-md-col-9 { grid-column: span 9; } .atl-md-col-12 { grid-column: span 12; }
}
@media (min-width: 1024px) {
  .atl-lg-col-2 { grid-column: span 2; } .atl-lg-col-3 { grid-column: span 3; }
  .atl-lg-col-4 { grid-column: span 4; } .atl-lg-col-5 { grid-column: span 5; }
  .atl-lg-col-6 { grid-column: span 6; } .atl-lg-col-7 { grid-column: span 7; }
  .atl-lg-col-8 { grid-column: span 8; } .atl-lg-col-12 { grid-column: span 12; }
}

.atl-flex { display: flex; }
.atl-flex-col { display: flex; flex-direction: column; }
.atl-flex-wrap { flex-wrap: wrap; }
.atl-items-center { align-items: center; }
.atl-items-start { align-items: flex-start; }
.atl-items-end { align-items: flex-end; }
.atl-items-stretch { align-items: stretch; }
.atl-justify-between { justify-content: space-between; }
.atl-justify-center { justify-content: center; }
.atl-justify-end { justify-content: flex-end; }
.atl-text-center { text-align: center; }
.atl-shrink-0 { flex-shrink: 0; }
.atl-w-full { width: 100%; }
.atl-mx-auto { margin-left: auto; margin-right: auto; }

/* Section vertical rhythm (matches the prototype's py-16 md:py-24/28 pattern) */
.atl-section { padding-top: 64px; padding-bottom: 64px; }
.atl-section-lg { padding-top: 64px; padding-bottom: 64px; }
.atl-section-tight { padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 768px) {
  .atl-section-lg { padding-top: 96px; padding-bottom: 96px; }
  .atl-section { padding-top: 64px; padding-bottom: 96px; }
}
.atl-bg-white { background: var(--atl-white); }
.atl-bg-cream-100 { background: var(--atl-cream-100); }
.atl-bg-ink { background: var(--atl-ink-900); }
.atl-border-y { border-top: 1px solid rgba(208,197,175,.4); border-bottom: 1px solid rgba(208,197,175,.4); }
.atl-border-t { border-top: 1px solid rgba(208,197,175,.4); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.atl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: var(--atl-radius-full); border: none;
  font-weight: 700; font-size: 14px; white-space: nowrap; cursor: pointer;
  transition: background-color var(--atl-duration-base), color var(--atl-duration-base);
}
.atl-btn svg { flex-shrink: 0; }
/* Blocksy (parent theme) themes button[type="submit"] with its own accent
   color; that compound selector has one specificity tier above a bare
   class, so it silently wins over .atl-btn-gold(-fill) on our <button
   type="submit"> form submits. Matching it with a button.class selector
   keeps our color without resorting to !important. */
.atl-btn-dark { background: var(--atl-ink-900); color: var(--atl-white); }
.atl-btn-dark:hover { background: #353128; color: var(--atl-white); }
.atl-btn-whatsapp { background: var(--atl-whatsapp); color: var(--atl-ink-900); }
.atl-btn-whatsapp:hover { filter: brightness(.95); color: var(--atl-ink-900); }
.atl-btn-gold, button.atl-btn-gold { background: var(--atl-gold-light); color: var(--atl-ink-900); }
.atl-btn-gold:hover, button.atl-btn-gold:hover { filter: brightness(.95); color: var(--atl-ink-900); }
.atl-btn-outline { background: var(--atl-white); border: 1px solid rgba(25,28,29,.15); color: var(--atl-ink-900); }
.atl-btn-outline:hover { background: var(--atl-cream); }
.atl-btn-block { width: 100%; }
.atl-btn-lg { padding: 16px 26px; font-family: var(--atl-font-display); font-size: 18px; font-weight: 600; border-radius: 8px; }
.atl-btn-gold-fill, button.atl-btn-gold-fill { background: var(--atl-gold); color: var(--atl-white); }
.atl-btn-gold-fill:hover, button.atl-btn-gold-fill:hover { background: var(--atl-gold-deep); }
.atl-btn-sm { padding: 10px 20px; font-size: 13px; }
.atl-btn-ghost-gold { background: transparent; border: 1.5px solid var(--atl-gold); color: var(--atl-gold); }
.atl-btn-ghost-gold:hover { background: rgba(115,92,0,.08); }
.atl-btn-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  background: var(--atl-ink-900); color: var(--atl-white); border: none; cursor: pointer;
  transition: background-color var(--atl-duration-base);
}
.atl-btn-circle:hover { background: #353128; }
.atl-btn-circle-outline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0; box-sizing: border-box;
  background: var(--atl-white); color: var(--atl-ink-900); border: 1px solid rgba(25,28,29,.2); cursor: pointer;
  transition: background-color var(--atl-duration-base);
}
.atl-btn-circle-outline:hover { background: var(--atl-cream-100); }
.atl-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; background: var(--atl-cream-100); flex-shrink: 0;
  transition: background-color var(--atl-duration-base);
}
.atl-icon-btn:hover { background: var(--atl-gold-light); }
.atl-icon-btn-fill { width: 44px; height: 44px; border-radius: 999px; color: var(--atl-white); display: inline-flex; align-items: center; justify-content: center; }
.atl-icon-btn-gold { background: var(--atl-gold); }
.atl-icon-btn-gold:hover { background: var(--atl-gold-deep); }
.atl-icon-btn-whatsapp { background: var(--atl-whatsapp); }
.atl-icon-btn-whatsapp:hover { filter: brightness(.95); }
.atl-link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--atl-gold); transition: gap var(--atl-duration-base); }
.atl-link-arrow:hover { gap: 12px; color: var(--atl-gold); }

/* --------------------------------------------------------------------------
   4. Badges / pills / kickers
   -------------------------------------------------------------------------- */
.atl-kicker { display: block; font-family: var(--atl-font-display); font-style: italic; font-size: 16px; color: var(--atl-gold); }
.atl-kicker-caps { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--atl-gold); }
.atl-kicker-caps-light { color: var(--atl-gold-dim); }
.atl-section-title { font-family: var(--atl-font-display); font-size: 32px; line-height: 1.2; font-weight: 700; color: var(--atl-ink-900); margin: 10px 0 0; }
.atl-section-head { margin-bottom: 40px; }
.atl-section-head-center { margin: 0 auto 48px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 600px; }

.atl-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.92); padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--atl-ink-900);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.atl-badge-dark { background: rgba(25,28,29,.85); color: var(--atl-white); backdrop-filter: blur(4px); }
.atl-badge-white-blur { background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--atl-gold); }
.atl-trust-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* --------------------------------------------------------------------------
   5. Forms
   -------------------------------------------------------------------------- */
.atl-field { display: flex; flex-direction: column; gap: 4px; }
.atl-label { font-weight: 700; font-size: 13px; letter-spacing: .02em; }
.atl-label-caps { font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--atl-ink-700); margin-bottom: 6px; }

.atl-input-underline {
  width: 100%; box-sizing: border-box; background: transparent; border: none;
  border-bottom: 2px solid var(--atl-outline); outline: none; padding: 8px 0;
  font-size: 15px; color: var(--atl-ink-900); transition: border-color var(--atl-duration-base);
}
.atl-input-underline:focus { border-color: var(--atl-gold); }

.atl-input-fill {
  width: 100%; box-sizing: border-box; background: var(--atl-cream);
  border: 1px solid transparent; border-radius: 12px; outline: none;
  padding: 14px 16px; font-size: 15px; color: var(--atl-ink-900);
  transition: border-color var(--atl-duration-base); appearance: none;
}
.atl-input-fill:focus { border-color: var(--atl-gold-light); }
textarea.atl-input-underline, textarea.atl-input-fill { resize: vertical; }

.atl-form-success { text-align: center; padding: 48px 8px; }
.atl-form-success-icon { color: var(--atl-green); }
.atl-form-note { color: rgba(77,70,53,.7); font-size: 12px; line-height: 16px; margin: 0; }

/* --------------------------------------------------------------------------
   6. Navbar (pill nav inside cream card, shared on every page)
   -------------------------------------------------------------------------- */
.atl-hero-wrap { padding: 20px 20px 0; max-width: var(--atl-max-page); margin: 0 auto; box-sizing: border-box; }
.atl-hero-card { background: var(--atl-cream-pill); border-radius: var(--atl-radius-xl4); padding: 20px; box-shadow: var(--atl-shadow-float); }
/* On mobile, drop the floating-card chrome (background/shadow/rounding) and
   the doubled-up inset (wrap padding + card padding) so the navbar and hero
   content sit flush at the same 20px margin as every other section instead
   of looking boxed-in. */
@media (max-width: 767px) {
  .atl-hero-wrap { padding: 0; }
  .atl-hero-card { background: transparent; border-radius: 0; box-shadow: none; }
}

.atl-nav-row { margin-bottom: 20px; position: relative; }
.atl-navbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--atl-white); border-radius: 999px; padding: 10px 12px 10px 20px;
  box-shadow: var(--atl-shadow-pill); gap: 12px;
  /* Blocksy applies its own height/overflow rules to bare <nav> elements
     (same collision class as the earlier heading font-family/color fights) —
     this is a <nav> for semantics, not Blocksy's nav, so force it to size to
     its own content instead of whatever Blocksy imposes. */
  height: auto !important; max-height: none !important; overflow: visible !important;
}
.atl-navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.atl-navbar-logo img { height: 55px; width: auto; }

.atl-nav-links { display: flex; align-items: center; gap: 8px; background: var(--atl-cream); border-radius: 999px; padding: 6px; flex-wrap: wrap; justify-content: center; }
.atl-nav-link {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  white-space: nowrap; color: var(--atl-ink-700); background: transparent;
  transition: color var(--atl-duration-base), background-color var(--atl-duration-base);
}
.atl-nav-link:hover { color: var(--atl-ink-900); }
.atl-nav-link.is-active { color: var(--atl-ink-900); background: var(--atl-white); box-shadow: 0 1px 4px rgba(0,0,0,.06); }

.atl-nav-dropdown { position: relative; padding-bottom: 8px; margin-bottom: -8px; }
.atl-nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
.atl-nav-dropdown-trigger svg { opacity: .6; flex-shrink: 0; }
.atl-nav-dropdown-panel {
  position: absolute; left: 0; top: 100%; padding-top: 8px; min-width: 220px; z-index: 65;
  display: none;
}
.atl-nav-dropdown:hover .atl-nav-dropdown-panel,
.atl-nav-dropdown.is-open .atl-nav-dropdown-panel { display: block; }
.atl-nav-dropdown-menu { display: flex; flex-direction: column; background: var(--atl-white); border-radius: var(--atl-radius-xl2); box-shadow: var(--atl-shadow-menu); padding: 8px; }
.atl-nav-dropdown-menu a { padding: 10px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--atl-ink-700); white-space: nowrap; transition: color var(--atl-duration-base), background-color var(--atl-duration-base); }
.atl-nav-dropdown-menu a:hover { color: var(--atl-ink-900); background: var(--atl-cream); }

.atl-nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 13px; }
.atl-nav-hamburger {
  display: none; flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px; border: none;
  background: var(--atl-cream); color: var(--atl-ink-900); align-items: center; justify-content: center; cursor: pointer;
}
.atl-nav-icon-close { display: none; }

.atl-nav-mobile-panel {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 60;
  background: var(--atl-white); border-radius: var(--atl-radius-xl2); box-shadow: var(--atl-shadow-menu);
  padding: 16px; flex-direction: column; gap: 4px;
}
.atl-nav-mobile-group { padding: 12px 16px 4px; }
.atl-nav-mobile-group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(77,70,53,.6); margin-bottom: 4px; }
.atl-nav-mobile-group-label-link { display: block; }
.atl-nav-mobile-sublink { display: block; padding: 10px 0; font-size: 15px; font-weight: 600; color: var(--atl-ink-700); }
.atl-nav-mobile-link { padding: 14px 16px; border-radius: var(--atl-radius-xl2); font-size: 15px; font-weight: 700; color: var(--atl-ink-700); }
.atl-nav-mobile-link.is-active { color: var(--atl-ink-900); background: var(--atl-cream); }
.atl-nav-mobile-cta { margin-top: 8px; text-align: center; }

/* Mobile breakpoint (JS also toggles .is-nav-mobile on <body> at 1024px so
   markup/behavior mirrors the prototype's matchMedia-driven state) */
body.is-nav-mobile .atl-nav-links { display: none; }
body.is-nav-mobile .atl-nav-hamburger { display: inline-flex; }
body.is-nav-mobile.is-nav-menu-open .atl-nav-mobile-panel { display: flex; }
body.is-nav-mobile.is-nav-menu-open .atl-nav-icon-menu { display: none; }
body.is-nav-mobile.is-nav-menu-open .atl-nav-icon-close { display: block; }
body:not(.is-nav-mobile) .atl-nav-mobile-panel { display: none !important; }

/* --------------------------------------------------------------------------
   7. Hero sections (image hero used on Destination / Safari Booking)
   -------------------------------------------------------------------------- */
.atl-img-hero {
  position: relative; overflow: hidden; border-radius: 24px; background: #12140f;
}
.atl-img-hero img.atl-img-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.atl-img-hero-overlay { position: absolute; inset: 0; }
.atl-img-hero-overlay-diag { background: linear-gradient(100deg, rgba(10,14,8,.9) 0%, rgba(10,14,8,.6) 38%, rgba(10,14,8,.2) 62%, rgba(10,14,8,.4) 100%); }
.atl-img-hero-content { position: relative; z-index: 10; }
.atl-img-hero-tall { height: 82vh; min-height: 600px; max-height: 840px; display: flex; align-items: center; }

.atl-jc-rail { position: absolute; left: 40px; top: 64px; bottom: 64px; width: 1px; z-index: 5; flex-direction: column; align-items: center; justify-content: space-between; display: none; }
@media (min-width: 768px) { .atl-jc-rail { display: flex; } }
@media (max-width: 700px) { .atl-jc-rail { display: none !important; } }
.atl-jc-rail-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--atl-gold-dim); box-shadow: 0 0 0 4px rgba(233,195,73,.2); }
.atl-jc-rail-line { flex: 1; width: 1px; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.35) 0, rgba(255,255,255,.35) 4px, transparent 4px, transparent 9px); }
.atl-jc-rail-label { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }

/* --------------------------------------------------------------------------
   8. Highlights marquee
   -------------------------------------------------------------------------- */
.atl-marquee-wrap { position: relative; z-index: 20; margin-top: -28px; margin-bottom: -8px; overflow: hidden; padding: 24px 0; }
.atl-marquee-band { transform: rotate(-1.4deg); width: 110%; margin-left: -5%; background: #3a2b14; box-shadow: 0 8px 24px rgba(0,0,0,.18); overflow: hidden; }
.atl-marquee-track { display: flex; width: max-content; animation: atl-marquee-scroll 28s linear infinite; }
.atl-marquee-set { display: flex; align-items: center; gap: 56px; padding: 18px 28px; white-space: nowrap; }
.atl-marquee-item { display: flex; align-items: center; gap: 12px; color: var(--atl-white); font-size: 16px; font-weight: 600; }

.atl-logo-marquee-wrap { overflow: hidden; }
.atl-logo-marquee-track { display: flex; width: max-content; animation: atl-marquee-scroll 32s linear infinite; }
.atl-logo-marquee-set { display: flex; align-items: center; gap: 56px; padding: 0 28px; }
.atl-logo-marquee-img { width: 150px; height: 60px; object-fit: contain; flex-shrink: 0; }
.atl-logo-marquee-placeholder { width: 150px; height: 60px; border: 1.5px dashed var(--atl-outline); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--atl-ink-500); font-size: 12px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   9. Cards: retreats, experiences, why-us, hotels, tours, rooms, blog
   -------------------------------------------------------------------------- */
.atl-media-round { border-radius: 20px; overflow: hidden; position: relative; }
.atl-media-round img { width: 100%; height: 100%; object-fit: cover; }

.atl-retreat-card-media { display: block; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; position: relative; }
.atl-retreat-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.atl-retreat-card-media:hover img { transform: scale(1.08); }
.atl-retreat-card-badge { position: absolute; top: 16px; left: 16px; }
.atl-retreat-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 16px; }
.atl-retreat-card-title { font-family: var(--atl-font-display); font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.atl-retreat-card-text { color: var(--atl-ink-700); font-size: 14px; line-height: 21px; margin: 0; max-width: 230px; }

.atl-experience-card { border-radius: 20px; padding: 32px; border: 1px solid rgba(25,28,29,.08); }
.atl-experience-icon { width: 48px; height: 48px; background: rgba(115,92,0,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; overflow: hidden; }
.atl-experience-icon img { width: 24px; height: 24px; object-fit: contain; }
.atl-experience-title { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.atl-experience-text { color: var(--atl-ink-700); font-size: 14px; line-height: 22px; margin: 0 0 20px; }

.atl-why-item { display: flex; gap: 16px; padding: 20px; background: var(--atl-white); border: 1px solid rgba(25,28,29,.08); border-radius: 14px; }
.atl-why-icon { width: 44px; height: 44px; border-radius: 999px; background: rgba(115,92,0,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.atl-why-title { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.atl-why-text { color: var(--atl-ink-700); font-size: 14px; line-height: 21px; margin: 0; }

.atl-promise-card { background: var(--atl-white); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.03); transition: transform .3s, box-shadow .3s; }
.atl-promise-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.atl-promise-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.atl-promise-icon-gold { background: rgba(115,92,0,.1); }
.atl-promise-icon-green { background: rgba(18,110,12,.1); }
.atl-promise-title { font-family: var(--atl-font-display); font-weight: 700; font-size: 19px; margin: 0; }
.atl-promise-text { color: var(--atl-ink-700); font-size: 15px; line-height: 23px; margin: 0; }

.atl-stat-card { border-radius: 20px; padding: 20px; position: relative; }
.atl-stat-card-dark { background: var(--atl-ink-900); color: var(--atl-white); }
.atl-stat-card-light { background: var(--atl-cream-100); }
.atl-stat-mark { position: absolute; top: 20px; right: 20px; font-size: 16px; }
.atl-stat-value { font-family: var(--atl-font-display); font-size: 28px; font-weight: 700; padding-right: 24px; }
.atl-stat-label { font-size: 14px; margin-top: 6px; }

.atl-home-stats-grid { grid-template-columns: repeat(2, 1fr) !important; width: 100%; box-sizing: border-box; }
.atl-home-stats-grid > :first-child { grid-column: span 2 !important; }

@media (min-width: 768px) {
  .atl-stat-card { padding: 24px; }
  .atl-stat-value { font-size: 32px; }
  .atl-home-stats-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .atl-home-stats-grid > :first-child { grid-column: span 1 !important; }
}

.atl-lift-card { background: var(--atl-white); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.04); transition: transform .3s; }
.atl-lift-card:hover { transform: translateY(-8px); }

.atl-hotel-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
.atl-hotel-card-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-hotel-card-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.atl-hotel-card-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.atl-hotel-card-title { font-family: var(--atl-font-display); font-size: 20px; line-height: 28px; font-weight: 600; margin: 0; }
.atl-hotel-card-price { display: flex; flex-direction: column; align-items: flex-end; color: var(--atl-gold-deep, #c97a1a); font-weight: 700; font-size: 15px; white-space: nowrap; }
.atl-hotel-card-price span { font-size: 12px; opacity: .6; font-weight: 400; }
.atl-hotel-card-text { color: var(--atl-ink-700); font-size: 16px; line-height: 24px; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.atl-hotel-card-cta { display: block; text-align: center; border: 1px solid var(--atl-gold); color: var(--atl-gold); padding: 12px; border-radius: 8px; font-weight: 700; font-size: 14px; transition: background-color .2s, color .2s; }
.atl-hotel-card-cta:hover { background: #8A6D1F !important; color: var(--atl-white) !important; }

.atl-tour-card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.atl-tour-card-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-tour-card-tag-left { position: absolute; top: 16px; left: 16px; }
.atl-tour-card-tag-right { position: absolute; top: 16px; right: 16px; background: rgba(25,28,29,.85); color: var(--atl-white); backdrop-filter: blur(4px); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.atl-tour-card-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.atl-tour-card-title { font-family: var(--atl-font-display); font-size: 20px; line-height: 28px; font-weight: 600; margin: 0; }
.atl-tour-card-text { color: var(--atl-ink-700); font-size: 15px; line-height: 22px; margin: 0; flex: 1; }
.atl-tour-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.atl-tour-tag { background: var(--atl-cream-100); color: var(--atl-ink-700); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.atl-tour-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(208,197,175,.3); }
.atl-tour-card-price { color: var(--atl-gold); font-weight: 700; font-size: 18px; }
.atl-tour-card-price-unit { font-size: 12px; color: rgba(77,70,53,.7); display: block; }

.atl-blog-card-media { aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
.atl-blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-blog-card-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--atl-gold); }
.atl-star-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.94); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--atl-ink-900); box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.atl-star-badge-stars { display: flex; color: #c9970f; }
.atl-blog-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.atl-blog-card-meta { color: var(--atl-ink-500); font-size: 12px; font-weight: 600; }
.atl-blog-card-title { font-family: var(--atl-font-display); font-size: 20px; line-height: 28px; font-weight: 600; margin: 0; }
.atl-blog-card-text { color: var(--atl-ink-700); font-size: 15px; line-height: 24px; margin: 0; }

/* --------------------------------------------------------------------------
   10. Testimonials carousel
   -------------------------------------------------------------------------- */
.atl-testimonial-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.atl-testimonial-track::-webkit-scrollbar { display: none; }
.atl-testimonial-photo, .atl-testimonial-card { flex: none; scroll-snap-align: start; width: 340px; height: 340px; box-sizing: border-box; }
.atl-testimonial-card { background: var(--atl-white); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.atl-testimonial-stars { color: #c97a1a; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.atl-testimonial-quote { font-family: var(--atl-font-display); color: var(--atl-ink-900); font-size: 17px; line-height: 27px; margin: 0 0 24px; }
.atl-testimonial-name { margin: 0; font-weight: 700; font-size: 15px; }
.atl-testimonial-place { margin: 2px 0 0; font-size: 14px; color: #c97a1a; }
.atl-testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }

/* --------------------------------------------------------------------------
   11. FAQ accordion
   -------------------------------------------------------------------------- */
.atl-faq-item { background: var(--atl-white); border: 1px solid rgba(25,28,29,.08); border-radius: 14px; overflow: hidden; }
.atl-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.atl-faq-question-text { font-weight: 700; font-size: 15px; color: var(--atl-ink-900); }
.atl-faq-answer { margin: 0; padding: 0 24px 20px; color: var(--atl-ink-700); font-size: 14px; line-height: 22px; display: none; }
.atl-faq-item.is-open .atl-faq-answer { display: block; }
.atl-faq-item.is-open .atl-faq-icon-plus { display: none; }
.atl-faq-item:not(.is-open) .atl-faq-icon-minus { display: none; }

/* --------------------------------------------------------------------------
   12. Journal / blog teaser list
   -------------------------------------------------------------------------- */
.atl-journal-item { display: grid; grid-template-columns: minmax(120px, 160px) 1fr; gap: 20px; align-items: center; color: inherit; }
.atl-journal-item-media { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; }
.atl-journal-item-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-journal-item-title { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--atl-ink-900); }
.atl-journal-item-text { color: var(--atl-ink-700); font-size: 14px; line-height: 21px; margin: 0 0 12px; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.atl-footer { background: var(--atl-cream-pill); }
.atl-footer-cta-wrap { padding: 56px 20px 64px; max-width: var(--atl-max-page); margin: 0 auto; box-sizing: border-box; }
@media (min-width: 768px) { .atl-footer-cta-wrap { padding: 80px 32px 80px; } }
@media (min-width: 1024px) { .atl-footer-cta-wrap { padding: 96px 64px 80px; } }
.atl-footer-cta { background: var(--atl-ink-900); border-radius: var(--atl-radius-xl4); overflow: hidden; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: stretch; }
.atl-footer-cta > * { min-width: 0; }
.atl-footer-cta-copy { grid-column: span 12; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.atl-footer-cta-media { grid-column: span 12; min-height: 280px; }
.atl-footer-cta-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) {
  .atl-footer-cta-copy { grid-column: span 6; padding: 56px; }
  .atl-footer-cta-media { grid-column: span 6; min-height: 0; }
}
.atl-footer-cta-kicker { font-family: var(--atl-font-display); font-style: italic; font-size: 16px; color: var(--atl-gold-dim); margin-bottom: 12px; }
.atl-footer-cta-title { font-family: var(--atl-font-display); font-size: 28px; line-height: 1.15; font-weight: 700; color: var(--atl-white); margin: 0 0 16px; }
.atl-footer-cta-text { color: rgba(255,255,255,.7); font-size: 16px; line-height: 26px; margin: 0 0 28px; max-width: 420px; }
@media (min-width: 768px) { .atl-footer-cta-title { font-size: 38px; } }
.atl-footer-cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; white-space: nowrap; }
.atl-footer-cta-phone { color: var(--atl-white); font-weight: 700; font-size: 14px; }
.atl-footer-cta-phone:hover { color: var(--atl-gold-light); }

.atl-footer-links { border-top: 1px solid rgba(25,28,29,.08); }
.atl-footer-links-grid { max-width: var(--atl-max-page); margin: 0 auto; padding: 64px 20px 40px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; box-sizing: border-box; }
.atl-footer-links-grid > * { min-width: 0; }
@media (min-width: 768px) { .atl-footer-links-grid { padding: 64px 32px 40px; } }
@media (min-width: 1024px) { .atl-footer-links-grid { padding: 64px 64px 40px; } }
.atl-footer-brand { grid-column: span 12; }
.atl-footer-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.atl-footer-brand-text { color: var(--atl-ink-700); font-size: 14px; line-height: 22px; margin: 0 0 24px; max-width: 320px; }
.atl-footer-social { display: flex; align-items: center; gap: 12px; }
.atl-footer-col { grid-column: span 6; }
.atl-footer-col-contact { grid-column: span 12; }
@media (min-width: 768px) {
  .atl-footer-brand { grid-column: span 4; }
  .atl-footer-col { grid-column: span 4; }
  .atl-footer-col-contact { grid-column: span 12; }
}
@media (min-width: 1024px) {
  .atl-footer-brand { grid-column: span 4; }
  .atl-footer-col { grid-column: span 2; }
  .atl-footer-col-contact { grid-column: span 4; }
}
.atl-footer-col-title { font-family: var(--atl-font-display); font-size: 18px; font-weight: 700; color: var(--atl-ink-900); margin: 0 0 20px; }
.atl-footer-col-links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.atl-footer-col-links a { color: var(--atl-ink-700); }
.atl-footer-col-links a:hover { color: var(--atl-ink-900); }
.atl-footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.atl-footer-contact-row { display: flex; align-items: center; gap: 10px; }
.atl-footer-contact-row.is-start { align-items: flex-start; }
.atl-footer-contact-icon { width: 32px; height: 32px; border-radius: 999px; background: var(--atl-cream-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.atl-footer-contact-text { color: var(--atl-ink-700); font-size: 14px; }

.atl-footer-bottom { max-width: var(--atl-max-page); margin: 0 auto; padding: 24px 20px; border-top: 1px solid rgba(25,28,29,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; box-sizing: border-box; }
@media (min-width: 768px) { .atl-footer-bottom { padding: 24px 32px; } }
@media (min-width: 1024px) { .atl-footer-bottom { padding: 24px 64px; } }
.atl-footer-copyright { color: var(--atl-ink-500); font-size: 13px; margin: 0; }
.atl-footer-copyright a { color: var(--atl-ink-700); }
.atl-footer-legal-links { display: flex; gap: 24px; }
.atl-footer-legal-links a { color: var(--atl-ink-500); font-size: 13px; }

/* --------------------------------------------------------------------------
   14. Breadcrumb
   -------------------------------------------------------------------------- */
.atl-breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--atl-ink-700); font-size: 12px; font-weight: 500; flex-wrap: wrap; margin-bottom: 20px; }
.atl-breadcrumb a { color: var(--atl-ink-700); }
.atl-breadcrumb a:hover { color: var(--atl-gold); }
.atl-breadcrumb-current { color: var(--atl-gold); }

/* --------------------------------------------------------------------------
   15. Page title band (About/Contact/Legal/Blog Listing)
   -------------------------------------------------------------------------- */
.atl-page-title { padding: 8px 8px 24px; text-align: center; }
@media (min-width: 768px) { .atl-page-title { padding: 8px 24px 40px; } }
.atl-page-title-heading { font-family: var(--atl-font-display); font-size: 32px; line-height: 1.15; font-weight: 700; margin: 12px 0; color: var(--atl-ink-900); }
@media (min-width: 768px) { .atl-page-title-heading { font-size: 48px; } }
.atl-page-title-text { color: var(--atl-ink-700); font-size: 17px; line-height: 27px; margin: 0 auto; max-width: 560px; }

/* --------------------------------------------------------------------------
   16. Gallery + lightbox (Single Hotel)
   -------------------------------------------------------------------------- */
.atl-gallery-wrap { position: relative; }
.atl-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); gap: 16px; height: 220px; border-radius: 20px; overflow: hidden; }
@media (min-width: 768px) { .atl-gallery-grid { height: 420px; } }
.atl-gallery-cell { position: relative; overflow: hidden; cursor: zoom-in; }
.atl-gallery-cell.is-featured { grid-column: span 2; grid-row: span 2; }
.atl-gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.atl-gallery-cell:hover img { transform: scale(1.05); }

.atl-lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,13,8,.92); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 20px; cursor: zoom-out; }
.atl-lightbox.is-open { display: flex; }
.atl-lightbox img { max-width: 84vw; max-height: 78vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.atl-lightbox-controls { display: flex; align-items: center; gap: 24px; }
.atl-lightbox-btn { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--atl-white); width: 48px; height: 48px; border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.atl-lightbox-btn:hover { background: rgba(255,255,255,.25); }
.atl-lightbox-count { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; }

/* --------------------------------------------------------------------------
   17. Amenities / rooms (Single Hotel)
   -------------------------------------------------------------------------- */
.atl-content-block { margin-bottom: 32px; border-bottom: 1px solid var(--atl-outline); padding-bottom: 32px; }
.atl-content-block-title { font-family: var(--atl-font-display); font-size: 28px; line-height: 36px; font-weight: 600; margin: 0 0 16px; }
.atl-content-block-text { color: var(--atl-ink-700); font-size: 16px; line-height: 30px; margin: 0; }
.atl-content-block-text p:not(:last-child) { margin-bottom: 16px; }
.atl-content-block-text a { color: var(--atl-gold); text-decoration: underline; text-underline-offset: 2px; }
.atl-content-block-text a:hover { color: var(--atl-gold-deep); }

/* Single blog post body (the_content output — headings, links, lists etc.
   authors write freely, so this covers whatever tags show up). */
.atl-post-content { color: var(--atl-ink-700); font-size: 16px; line-height: 27px; }
.atl-post-content > *:not(:last-child) { margin-bottom: 20px; }
.atl-post-content h1, .atl-post-content h2, .atl-post-content h3, .atl-post-content h4, .atl-post-content h5, .atl-post-content h6 { font-family: var(--atl-font-display); font-weight: 700; color: var(--atl-ink-900); line-height: 1.3; margin: 0 0 12px; }
.atl-post-content h2 { font-size: 26px; }
.atl-post-content h3 { font-size: 21px; }
.atl-post-content h4, .atl-post-content h5, .atl-post-content h6 { font-size: 18px; }
.atl-post-content a { color: var(--atl-gold); text-decoration: underline; text-underline-offset: 2px; }
.atl-post-content a:hover { color: var(--atl-gold-deep); }
.atl-post-content strong, .atl-post-content b { color: var(--atl-ink-900); }
.atl-post-content ul, .atl-post-content ol { padding-left: 22px; margin: 0; }
.atl-post-content ul { list-style: disc; }
.atl-post-content ol { list-style: decimal; }
.atl-post-content li:not(:last-child) { margin-bottom: 8px; }
.atl-post-content img { max-width: 100%; height: auto; border-radius: var(--atl-radius-lg); }
.atl-post-content blockquote { margin: 0; padding: 16px 24px; border-left: 3px solid var(--atl-gold); background: var(--atl-cream-pill); border-radius: 0 var(--atl-radius-lg) var(--atl-radius-lg) 0; font-style: italic; color: var(--atl-ink-900); }

.atl-amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--atl-outline); border-radius: var(--atl-radius-lg); overflow: hidden; background: var(--atl-white); }
@media (min-width: 768px) { .atl-amenity-grid { grid-template-columns: repeat(4, 1fr); } }
.atl-amenity-grid-item { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-top: 1px solid var(--atl-outline); border-left: 1px solid var(--atl-outline); }
.atl-amenity-grid-item:nth-child(2n+1) { border-left: none; }
.atl-amenity-grid-item:nth-child(-n+2) { border-top: none; }
@media (min-width: 768px) {
  .atl-amenity-grid-item:nth-child(2n+1) { border-left: 1px solid var(--atl-outline); }
  .atl-amenity-grid-item:nth-child(4n+1) { border-left: none; }
  .atl-amenity-grid-item:nth-child(-n+2) { border-top: 1px solid var(--atl-outline); }
  .atl-amenity-grid-item:nth-child(-n+4) { border-top: none; }
}
.atl-amenity-grid-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--atl-cream-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.atl-amenity-grid-label { font-weight: 700; font-size: 14px; letter-spacing: .01em; color: var(--atl-ink-900); }

.atl-room-card { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; background: var(--atl-white); border: 1px solid var(--atl-outline); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.atl-room-card.is-selected { border-color: var(--atl-gold); box-shadow: 0 0 0 2px rgba(115,92,0,.15); }
.atl-room-card-media { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.atl-room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.atl-room-card-media:hover img.is-active { transform: scale(1.05); }
.atl-room-card-media[data-atl-room-slider] img { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease, transform .7s; }
.atl-room-card-media[data-atl-room-slider] img.is-active { opacity: 1; }
.atl-room-slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.atl-room-slider-dot { width: 7px; height: 7px; padding: 0; border: none; border-radius: 999px; background: rgba(255,255,255,.6); cursor: pointer; transition: width .2s, background-color .2s; }
.atl-room-slider-dot.is-active { width: 18px; border-radius: 4px; background: #fff; }
.atl-room-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.atl-room-card-title { font-family: var(--atl-font-display); font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.atl-room-card-text { color: var(--atl-ink-700); font-size: 16px; margin: 0 0 16px; }
.atl-room-card-facts { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; font-weight: 500; color: var(--atl-ink-700); margin-bottom: 24px; }
.atl-room-card-fact { display: flex; align-items: center; gap: 4px; }
.atl-room-card-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(208,197,175,.3); display: flex; align-items: center; justify-content: space-between; }
.atl-room-card-price { color: var(--atl-gold); font-weight: 700; font-size: 26px; font-family: var(--atl-font-display); }
.atl-room-card-price-unit { color: var(--atl-ink-700); display: block; font-size: 12px; }
.atl-room-card-actions { display: flex; align-items: center; gap: 12px; }

.atl-room-slide-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 8px; scrollbar-width: none; }
.atl-room-slide-track::-webkit-scrollbar { display: none; }
.atl-room-slide { position: relative; flex: none; scroll-snap-align: start; width: 300px; aspect-ratio: 3 / 4; max-height: 420px; box-sizing: border-box; border-radius: 20px; overflow: hidden; background: var(--atl-ink-900); cursor: pointer; box-shadow: var(--atl-shadow-card); transition: transform .3s, box-shadow .3s; -webkit-tap-highlight-color: transparent; }
.atl-room-slide:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.atl-room-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,8,0,.92) 0%, rgba(10,8,0,.55) 40%, rgba(10,8,0,0) 68%); pointer-events: none; }
.atl-room-slide-media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; background: var(--atl-surface-low); }
.atl-room-slide-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.atl-room-slide:hover .atl-room-slide-media img { transform: scale(1.08); }
.atl-room-slide-body { position: absolute; z-index: 2; inset-inline: 0; bottom: 0; padding: 22px 20px; color: #fff; }
.atl-room-slide-title { font-family: var(--atl-font-display); font-size: 19px; font-weight: 600; margin: 0 0 6px; color: #fff; }
.atl-room-slide-text { color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.5; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.atl-room-slide-facts { display: flex; flex-wrap: wrap; gap: 10px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.75); margin-bottom: 12px; }
.atl-room-slide-fact { display: flex; align-items: center; gap: 4px; }
.atl-room-slide-foot { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.atl-room-slide-price { color: var(--atl-gold-light); font-weight: 700; font-size: 19px; font-family: var(--atl-font-display); }
.atl-room-slide-price-unit { color: rgba(255,255,255,.75); font-size: 12px; margin-left: 4px; }
.atl-room-slide-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.atl-room-slide-actions .atl-icon-btn-fill { width: 34px; height: 34px; }

/* Cards-per-view modifiers — card width becomes a fraction of the track
   instead of a fixed 300px, so N cards fit exactly in one view. Track stays
   flex + overflow-x:auto, so it's still a slider, just fewer cards per view. */
/* The N-per-row sizing is a desktop layout choice — on mobile every room
   list stays the fixed-width horizontal slider (.atl-room-slide's own
   300px), same as the "more than 3 rooms" case, regardless of room count.
   Dividing the narrow viewport into 2 or 3 columns produced cards too
   small to hold the title/facts/price without overlapping. */
@media (min-width: 768px) {
  .atl-room-slide-track-3 .atl-room-slide { width: auto; flex: 0 0 calc((100% - 48px) / 3); }
  .atl-room-slide-track-2 .atl-room-slide { width: auto; flex: 0 0 calc((100% - 24px) / 2); }
  /* Room count fits the desktop grid exactly with no overflow, so the nav
     buttons (kept in the markup for mobile, where cards are fixed-width and
     always need a way to reach the rest) aren't needed here. */
  .atl-room-nav-desktop-hide { display: none; }
}

/* --------------------------------------------------------------------------
   18. Booking sidebar (Single Hotel)
   -------------------------------------------------------------------------- */
/* Sticky positioning for the booking panel is handled here (position:
   sticky below), not in JS — see initBookingSidebar()'s comment in
   main.js for why the old JS scroll-position hack was removed. */
.atl-booking-sidebar { background: var(--atl-surface-low); border-radius: 20px; padding: 32px; box-shadow: var(--atl-shadow-card); border: 1px solid var(--atl-outline); }
@media (min-width: 1024px) {
  .atl-booking-sidebar { position: sticky; top: 96px; }
}
.atl-booking-price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.atl-booking-price { color: var(--atl-gold); font-weight: 700; font-size: 28px; font-family: var(--atl-font-display); white-space: nowrap; }
.atl-booking-price-unit { font-size: 14px; font-weight: 400; color: var(--atl-ink-900); font-family: var(--atl-font-body); }
.atl-booking-summary { display: flex; justify-content: space-between; align-items: center; background: rgba(212,175,55,.12); border-radius: 10px; padding: 12px 16px; }
.atl-booking-offer { margin-top: 32px; background: rgba(212,175,55,.1); border: 1px solid rgba(115,92,0,.2); padding: 16px; border-radius: 12px; }
.atl-booking-offer-head { display: flex; align-items: center; gap: 8px; color: var(--atl-gold); margin-bottom: 4px; }

.atl-quick-facts-title { font-family: var(--atl-font-display); font-size: 19px; font-weight: 700; color: var(--atl-ink-900); margin: 0 0 16px; }
.atl-sidebar-contact { background: var(--atl-cream-100); border-radius: 16px; padding: 4px 16px; }
.atl-sidebar-contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.atl-sidebar-contact-row:not(:last-child) { border-bottom: 1px solid rgba(115,92,0,.15); }
.atl-sidebar-contact-row > div { min-width: 0; flex: 1; }
.atl-sidebar-contact-icon { width: 40px; height: 40px; border-radius: 999px; background: var(--atl-gold); color: var(--atl-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background-color var(--atl-duration-base); }
.atl-sidebar-contact-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--atl-ink-500); margin-bottom: 2px; }
.atl-sidebar-contact-value { display: block; font-size: 15px; font-weight: 700; color: var(--atl-ink-900); transition: color var(--atl-duration-base); overflow-wrap: anywhere; }
.atl-sidebar-contact-row:hover .atl-sidebar-contact-value { color: var(--atl-gold); }
.atl-sidebar-contact-row:hover .atl-sidebar-contact-icon { background: var(--atl-gold-deep); }

/* Wider column-gap only at desktop (2-col layout) — kept out of an inline
   style because inline column-gap beats the mobile .atl-gap-8 cap below
   767px regardless of media query, which was forcing 11 unshrinkable 64px
   gaps across the 12-column grid track and blowing out the phone width. */
@media (min-width: 768px) { .atl-reviews-grid { column-gap: 64px; } }
.atl-review { border-bottom: 1px solid var(--atl-outline); padding-bottom: 16px; }
.atl-review-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.atl-review-avatar { width: 48px; height: 48px; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.atl-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.atl-review-avatar-initials { display: flex; align-items: center; justify-content: center; background: var(--atl-cream-100); color: var(--atl-gold-deep); font-family: var(--atl-font-display); font-weight: 700; font-size: 16px; letter-spacing: .02em; }
.atl-review-name { font-weight: 700; font-size: 16px; margin: 0; }
.atl-review-meta { font-size: 16px; color: var(--atl-ink-700); margin: 2px 0 0; }
.atl-review-stars { margin-left: auto; display: flex; color: var(--atl-gold); gap: 1px; }
.atl-review-text { color: var(--atl-ink-700); font-size: 16px; font-style: italic; margin: 0; overflow: hidden; }
.atl-review-text:not(.is-expanded) { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
.atl-review-more { display: block; margin-top: 8px; padding: 0; background: none; border: none; font-family: var(--atl-font-body); font-weight: 700; font-size: 14px; color: var(--atl-gold-deep); cursor: pointer; }
.atl-review-more:hover { text-decoration: underline; }
.atl-review-more[hidden] { display: none; }

.atl-map-frame { height: 320px; width: 100%; border-radius: 20px; overflow: hidden; border: 1px solid var(--atl-outline); }
.atl-map-frame img { width: 100%; height: 100%; object-fit: cover; }
.atl-map-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.atl-map-frame-empty { height: 100%; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: var(--atl-cream-100); padding: 24px; box-sizing: border-box; text-align: center; }
.atl-map-frame-empty p { color: var(--atl-ink-700); font-size: 14px; max-width: 280px; margin: 0; }

/* --------------------------------------------------------------------------
   19. Itinerary (Single Tour)
   -------------------------------------------------------------------------- */
.atl-itinerary-card { position: relative; background: var(--atl-white); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.05); display: flex; flex-direction: column; }
@media (min-width: 768px) { .atl-itinerary-card.is-reversed { flex-direction: row-reverse; } }
@media (min-width: 768px) { .atl-itinerary-card:not(.is-reversed) { flex-direction: row; } }
.atl-itinerary-media { position: relative; aspect-ratio: 4 / 3; flex-shrink: 0; }
@media (min-width: 768px) { .atl-itinerary-media { width: 42%; aspect-ratio: auto; } }
.atl-itinerary-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-itinerary-day-badge { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.atl-itinerary-body { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 32px; }
@media (min-width: 768px) { .atl-itinerary-body { padding: 40px; } }
.atl-itinerary-watermark { font-family: var(--atl-font-display); font-weight: 700; font-size: 76px; line-height: 1; color: rgba(212,175,55,.35); position: absolute; top: 16px; right: 32px; user-select: none; }
.atl-itinerary-title { font-family: var(--atl-font-display); font-size: 20px; font-weight: 600; margin: 0; max-width: 420px; }
@media (min-width: 768px) { .atl-itinerary-title { font-size: 24px; } }
.atl-itinerary-text { color: var(--atl-ink-700); font-size: 15px; line-height: 25px; margin: 0; max-width: 440px; }

.atl-includes-band { background: var(--atl-ink-900); padding: 56px 0; }
.atl-includes-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
@media (min-width: 768px) { .atl-includes-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; } }
/* Column count follows the actual item count instead of always reserving 4
   slots, so 2 or 3 items fill the row edge-to-edge instead of leaving the
   rest of the row blank. Mobile only needs its own override for a single
   item — 2+ items already fit its default 2-column layout. */
.atl-includes-grid-mobile-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .atl-includes-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .atl-includes-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .atl-includes-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.atl-includes-item { display: flex; flex-direction: column; gap: 16px; }
.atl-includes-num { font-family: var(--atl-font-display); color: rgba(212,175,55,.4); font-size: 15px; font-weight: 700; }
.atl-includes-icon { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(212,175,55,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.atl-includes-title { font-family: var(--atl-font-display); font-size: 18px; font-weight: 600; color: var(--atl-white); margin: 0 0 4px; }
.atl-includes-text { color: rgba(255,255,255,.6); font-size: 14px; line-height: 22px; margin: 0; }

.atl-covered-card { border-radius: 24px; padding: 32px; display: flex; flex-direction: column; gap: 16px; background: var(--atl-cream-pill); }
.atl-covered-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.atl-covered-title { font-family: var(--atl-font-display); font-size: 20px; font-weight: 600; margin: 0; }
.atl-covered-content { color: var(--atl-ink-700); font-size: 14px; line-height: 21px; }
.atl-covered-content p:not(:last-child) { margin: 0 0 10px; }
.atl-covered-content p:last-child { margin: 0; }
.atl-covered-content ul { margin: 0; padding-left: 18px; list-style: disc; }
.atl-covered-content ol { margin: 0; padding-left: 18px; list-style: decimal; }
.atl-covered-content li { display: list-item; }
.atl-covered-content li:not(:last-child) { margin-bottom: 6px; }

/* --------------------------------------------------------------------------
   20. Filter pills (Hotel / Tour Listing)
   -------------------------------------------------------------------------- */
.atl-filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
/* border-radius here is intentionally NOT 999px (a true pill) — this container
   uses flex-wrap and can span two rows on narrow screens, where a pill radius
   produces a blobby/mismatched shape instead of a clean rounded box. */
.atl-filter-group { display: inline-flex; align-items: center; gap: 4px; background: var(--atl-cream-100); border-radius: 20px; padding: 6px; flex-wrap: wrap; }
.atl-filter-btn { padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; white-space: nowrap; border: none; cursor: pointer; background: transparent; color: var(--atl-ink-700); transition: background-color .25s ease, color .25s ease, box-shadow .25s ease; }
.atl-filter-btn:hover:not(.is-active) { background: rgba(255,255,255,.6); color: var(--atl-ink-900); }
.atl-filter-btn.is-active { color: var(--atl-white); background: var(--atl-ink-900); box-shadow: 0 4px 14px rgba(25,28,29,.28); }
.atl-filter-results { color: var(--atl-ink-700); font-size: 14px; }
.atl-empty-state { text-align: center; padding: 64px 24px; color: var(--atl-ink-700); }

/* --------------------------------------------------------------------------
   21. CTA banners (dark, gold-glow) — call-back / enquiry sections
   -------------------------------------------------------------------------- */
.atl-cta-panel { max-width: 1100px; margin: 0 auto; background: var(--atl-ink-900); border-radius: 32px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.18); position: relative; }
.atl-cta-glow { position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 999px; background: radial-gradient(circle, rgba(212,175,55,.18), transparent 70%); }
.atl-cta-split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.atl-cta-split > * { min-width: 0; }
.atl-cta-copy { grid-column: span 12; padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 20px; position: relative; overflow: hidden; }
.atl-cta-form { grid-column: span 12; background: var(--atl-white); padding: 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) {
  .atl-cta-copy { grid-column: span 6; padding: 64px; }
  .atl-cta-form { grid-column: span 6; padding: 48px; }
}
.atl-cta-flex { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 32px; padding: 40px; position: relative; }
@media (min-width: 768px) { .atl-cta-flex { flex-direction: row; padding: 64px; } }
.atl-cta-eyebrow { color: var(--atl-gold-dim); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; position: relative; }
.atl-cta-title { font-family: var(--atl-font-display); font-size: 28px; line-height: 1.2; font-weight: 700; color: var(--atl-white); margin: 0; position: relative; }
@media (min-width: 768px) { .atl-cta-title { font-size: 38px; } }
.atl-cta-rule { width: 56px; height: 3px; background: var(--atl-gold-light); position: relative; }
.atl-cta-text { color: rgba(255,255,255,.72); font-size: 16px; line-height: 26px; margin: 0; max-width: 380px; position: relative; }
.atl-cta-response-note { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-size: 13px; margin-top: 8px; position: relative; }

/* --------------------------------------------------------------------------
   22. Safari cards / zones table (Safari Booking)
   -------------------------------------------------------------------------- */
.atl-safari-card { background: var(--atl-white); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.atl-safari-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.atl-safari-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-safari-tag { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.atl-safari-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.atl-safari-title { font-family: var(--atl-font-display); font-size: 24px; font-weight: 600; margin: 0; }
.atl-safari-text { color: var(--atl-ink-700); font-size: 15px; line-height: 24px; margin: 0; }
.atl-safari-facts { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(208,197,175,.4); }
.atl-safari-fact { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.atl-safari-fact span:first-child { color: var(--atl-ink-700); font-weight: 600; }
.atl-safari-cost { display: flex; align-items: baseline; gap: 8px; padding-top: 8px; }
.atl-safari-cost-value { font-family: var(--atl-font-display); font-size: 24px; font-weight: 700; color: var(--atl-gold); }
.atl-safari-note { color: rgba(77,70,53,.8); font-size: 13px; line-height: 19px; margin: 0; }

.atl-zone-table { border-radius: 24px; border: 1px solid var(--atl-outline); overflow: hidden; }
.atl-zone-table-head { display: grid; grid-template-columns: 1fr 1fr; background: var(--atl-cream-100); padding: 16px 24px; }
.atl-zone-table-head span { font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--atl-ink-700); }
.atl-zone-table-row { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 24px; border-top: 1px solid rgba(208,197,175,.3); }
.atl-zone-table-row span:first-child { font-weight: 600; color: var(--atl-ink-900); font-size: 15px; }
.atl-zone-table-row span:last-child { color: var(--atl-ink-700); font-size: 15px; }

.atl-timing-card { background: var(--atl-cream-pill); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.atl-timing-row { display: flex; justify-content: space-between; font-size: 14px; }
.atl-timing-row span:first-child { color: var(--atl-ink-700); font-weight: 600; }
.atl-cost-card { background: var(--atl-gold-light); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.atl-cost-card-label { font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--atl-gold-deep); }
.atl-cost-card-value { font-family: var(--atl-font-display); font-size: 30px; font-weight: 700; color: var(--atl-gold-deep); }
.atl-cost-card-text { color: rgba(85,67,0,.85); font-size: 14px; line-height: 20px; margin: 0; }

/* --------------------------------------------------------------------------
   23. Legal content (Privacy / Terms)
   -------------------------------------------------------------------------- */
.atl-legal-card { background: var(--atl-white); border-radius: 20px; padding: 32px; box-shadow: var(--atl-shadow-card); border: 1px solid var(--atl-outline); display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .atl-legal-card { padding: 56px; } }
.atl-legal-updated { color: var(--atl-ink-500); font-size: 14px; margin: 0; }
.atl-legal-section { display: flex; flex-direction: column; gap: 12px; }
.atl-legal-section-title { font-family: var(--atl-font-display); font-size: 20px; font-weight: 600; margin: 0; }
@media (min-width: 768px) { .atl-legal-section-title { font-size: 24px; } }
.atl-legal-section-text { color: var(--atl-ink-700); font-size: 16px; line-height: 27px; margin: 0; }
.atl-legal-section-text p:not(:last-child) { margin: 0 0 16px; }
.atl-legal-section-text p:last-child { margin: 0; }
.atl-legal-footnote { padding-top: 16px; border-top: 1px solid var(--atl-outline); }

/* --------------------------------------------------------------------------
   24. About Us: achievements / values / team
   -------------------------------------------------------------------------- */
.atl-stat-block { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
@media (min-width: 768px) { .atl-stat-block { border-left: 1px solid rgba(255,255,255,.1); padding-left: 16px; } .atl-stat-block:first-child { border-left: none; padding-left: 0; } }
.atl-stat-block-value { font-family: var(--atl-font-display); font-size: 36px; font-weight: 700; color: var(--atl-gold-light); line-height: 1; }
@media (min-width: 768px) { .atl-stat-block-value { font-size: 44px; } }
.atl-stat-block-label { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; }

.atl-value-card { background: var(--atl-white); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.atl-value-icon { width: 56px; height: 56px; background: rgba(115,92,0,.12); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.atl-value-title { font-family: var(--atl-font-display); font-size: 20px; font-weight: 600; margin: 0; }
.atl-value-text { color: var(--atl-ink-700); font-size: 16px; line-height: 24px; margin: 0; }

.atl-team-card { background: var(--atl-cream); border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.atl-team-card-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.atl-team-card-media img { width: 100%; height: 100%; object-fit: cover; }
.atl-team-card-role { color: var(--atl-ink-500); font-size: 14px; display: block; margin-bottom: 4px; }
.atl-team-card-name { font-size: 20px; font-weight: 700; margin: 0 0 8px; color: var(--atl-gold); }
.atl-team-card-text { color: var(--atl-ink-700); font-size: 14px; line-height: 22px; margin: 0; }
.atl-team-card-social { display: flex; align-items: center; gap: 10px; }

/* --------------------------------------------------------------------------
   25. Contact page
   -------------------------------------------------------------------------- */
.atl-contact-form-card { background: var(--atl-white); border-radius: 20px; padding: 32px; box-shadow: var(--atl-shadow-card); border: 1px solid var(--atl-outline); }
@media (min-width: 768px) { .atl-contact-form-card { padding: 48px; } }
.atl-contact-info-card { background: var(--atl-ink-900); border-radius: 20px; padding: 36px; color: var(--atl-white); display: flex; flex-direction: column; gap: 24px; }
.atl-contact-info-row { display: flex; align-items: center; gap: 14px; }
.atl-contact-info-icon { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.atl-contact-info-label { display: block; font-size: 12px; color: var(--atl-gold-dim); }
.atl-contact-info-value { font-size: 15px; font-weight: 600; }
.atl-contact-hours-card { display: flex; align-items: center; gap: 16px; background: var(--atl-white); border-radius: 12px; padding: 24px; border: 1px solid var(--atl-outline); }
.atl-contact-hours-title { display: block; font-weight: 700; font-size: 14px; }
.atl-contact-hours-text { font-size: 13px; color: var(--atl-ink-700); }
.atl-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--atl-whatsapp); color: var(--atl-white); padding: 14px; border-radius: 999px; font-weight: 700; font-size: 14px; margin-top: 8px; }
.atl-whatsapp-btn:hover { filter: brightness(.95); color: var(--atl-white); }

/* --------------------------------------------------------------------------
   26. Utility: images, aspect ratios, visibility
   -------------------------------------------------------------------------- */
.atl-img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.atl-aspect-video { aspect-ratio: 16 / 9; overflow: hidden; }
.atl-aspect-4-3 { aspect-ratio: 4 / 3; overflow: hidden; }
.atl-rounded-lg { border-radius: 20px; overflow: hidden; }
.atl-relative { position: relative; }
.atl-overflow-hidden { overflow: hidden; }

@media (max-width: 767px) {
  .atl-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .atl-hide-desktop { display: none !important; }
}

/* --------------------------------------------------------------------------
   27. Destination attraction bento tiles
   -------------------------------------------------------------------------- */
.atl-attraction-tile { position: relative; overflow: hidden; border-radius: 24px; height: 100%; min-height: 256px; box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.atl-attraction-tile.is-featured { min-height: 320px; }
.atl-attraction-tile.is-plain { background: rgba(18,110,12,.1); display: flex; flex-direction: column; justify-content: center; padding: 32px; box-sizing: border-box; }
.atl-attraction-tile.is-plain.is-gold { background: rgba(115,92,0,.1); }
.atl-attraction-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.atl-attraction-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; box-sizing: border-box; }
.atl-attraction-overlay h4 { color: #fff; font-size: 24px; font-weight: 600; margin: 0 0 6px; }
.atl-attraction-overlay p { color: rgba(255,255,255,.8); font-size: 16px; margin: 0; max-width: 440px; }
.atl-attraction-tile.is-plain h4 { font-size: 24px; font-weight: 600; margin: 0 0 8px; }
.atl-attraction-tile.is-plain p { color: var(--atl-ink-700); font-size: 16px; margin: 0; }

/* --------------------------------------------------------------------------
   28. Destination heritage milestones
   -------------------------------------------------------------------------- */
.atl-milestone-strip { display: grid; grid-template-columns: 1fr; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(208,197,175,.4); }
@media (min-width: 768px) { .atl-milestone-strip { grid-template-columns: repeat(3, 1fr); } }
.atl-milestone { display: flex; flex-direction: column; gap: 4px; }
@media (min-width: 768px) { .atl-milestone { border-left: 1px solid rgba(208,197,175,.4); padding-left: 24px; } .atl-milestone:first-child { border-left: none; padding-left: 0; } }
.atl-milestone-year { font-family: var(--atl-font-display); font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--atl-ink-900); }
.atl-milestone-text { font-size: 13px; line-height: 19px; color: var(--atl-ink-700); }
