/* Alaska Overlander — custom page system (non-editor) */
:root {
  --ao-navy: #0f172a;
  --ao-navy-mid: #1e293b;
  --ao-amber: #b45309;
  --ao-amber-hover: #d97706;
  --ao-gold: #fbbf24;
  --ao-slate: #64748b;
  --ao-text: #334155;
  --ao-text-muted: #475569;
  --ao-bg: #f8fafc;
  --ao-bg-alt: #f1f5f9;
  --ao-border: #cbd5e1;
  --ao-white: #ffffff;
  --ao-radius: 14px;
  --ao-radius-sm: 8px;
  --ao-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --ao-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --ao-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ao-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --ao-max: 1180px;
  --ao-header-h: 76px;
  --ao-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.ao-custom-page {
  margin: 0;
  font-family: var(--ao-font);
  color: var(--ao-text);
  background: var(--ao-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.ao-custom-page h1,
body.ao-custom-page h2,
body.ao-custom-page h3,
body.ao-custom-page h4,
body.ao-custom-page h5,
body.ao-custom-page h6 {
  font-family: var(--ao-font-heading);
}

body.ao-custom-page #page-container,
body.ao-custom-page #main-header,
body.ao-custom-page #main-footer,
body.ao-custom-page .et-l,
body.ao-custom-page #footer-bottom {
  display: none !important;
}

.ao-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ao-skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--ao-navy);
  color: var(--ao-white);
  z-index: 9999;
  border-radius: var(--ao-radius-sm);
}

/* Header */
.ao-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--ao-header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ao-ease), box-shadow 0.4s var(--ao-ease), backdrop-filter 0.4s;
}

.ao-header.is-scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ao-header__inner {
  width: min(100% - 32px, var(--ao-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ao-logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.35s var(--ao-ease);
}

.ao-logo:hover img {
  transform: scale(1.03);
}

.ao-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.ao-header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding-left: 10px;
  margin-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ao-header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--ao-radius-sm);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.ao-header-icon:hover {
  color: var(--ao-white);
  background: rgba(255, 255, 255, 0.08);
}

.ao-header-icon__badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: var(--ao-white);
  background: var(--ao-amber);
  border-radius: 999px;
}

.ao-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.ao-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ao-nav__list > .menu-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ao-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ao-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--ao-radius-sm);
  transition: color 0.25s, background 0.25s;
}

.ao-nav a:hover,
.ao-nav a.is-active {
  color: var(--ao-white);
  background: rgba(255, 255, 255, 0.1);
}

.ao-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--ao-radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ao-ease), box-shadow 0.25s, background 0.25s;
}

.ao-btn--primary {
  background: var(--ao-amber);
  color: var(--ao-white);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.35);
}

.ao-btn--primary:hover {
  background: var(--ao-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

.ao-btn--outline {
  background: transparent;
  color: var(--ao-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.ao-btn--outline:hover {
  border-color: var(--ao-white);
  background: rgba(255, 255, 255, 0.08);
}

.ao-btn--dark {
  background: var(--ao-navy);
  color: var(--ao-white);
}

.ao-btn--light {
  background: var(--ao-white);
  color: var(--ao-amber);
}

.ao-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ao-white);
  padding: 8px;
  cursor: pointer;
}

/* Nav dropdown — Meet the Rigs rig submenu */
.ao-nav-dropdown {
  position: relative;
}

.ao-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ao-nav-dropdown__caret {
  transition: transform 0.25s var(--ao-ease);
}

.ao-nav-dropdown.is-open .ao-nav-dropdown__caret {
  transform: rotate(180deg);
}

.ao-nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 188px;
  background: var(--ao-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ao-radius-sm);
  box-shadow: var(--ao-shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ao-ease), transform 0.25s var(--ao-ease), visibility 0.25s;
  z-index: 100;
}

.ao-nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: 0;
}

.ao-nav-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ao-nav-dropdown:hover .ao-nav-dropdown__menu,
.ao-nav-dropdown.is-open .ao-nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rig cards — full clickable cards on Meet the Rigs */
.ao-rig-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ao-rig-card__link:hover .ao-card__img img {
  transform: scale(1.06);
}

.ao-rig-card__vehicle {
  color: var(--ao-slate);
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.ao-rig-card__tagline {
  color: var(--ao-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.ao-rig-card .ao-btn {
  pointer-events: none;
}

/* Main layout */
.ao-main {
  padding-top: 0;
}

.ao-wrap {
  width: min(100% - 40px, var(--ao-max));
  margin: 0 auto;
}

/* Hero */
.ao-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ao-white);
  text-align: center;
}

.ao-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: ao-kenburns 18s ease-in-out infinite alternate;
}

.ao-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(180, 83, 9, 0.25) 100%
  );
}

.ao-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--ao-header-h) + 48px) 24px 80px;
  max-width: 820px;
}

.ao-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ao-gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: ao-fade-up 0.8s var(--ao-ease) 0.2s forwards;
}

.ao-hero h1 {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 20px;
  opacity: 0;
  animation: ao-fade-up 0.9s var(--ao-ease) 0.35s forwards;
}

.ao-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #e2e8f0;
  margin: 0 auto 32px;
  max-width: 620px;
  opacity: 0;
  animation: ao-fade-up 0.9s var(--ao-ease) 0.5s forwards;
}

.ao-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: ao-fade-up 0.9s var(--ao-ease) 0.65s forwards;
}

.ao-hero--compact {
  min-height: 52vh;
}

.ao-hero--compact .ao-hero__content {
  padding-bottom: 48px;
}

@keyframes ao-kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.14); }
}

@keyframes ao-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.ao-section {
  padding: 88px 0;
}

.ao-section--alt {
  background: var(--ao-bg);
}

.ao-section--muted {
  background: var(--ao-bg-alt);
}

.ao-section--dark {
  background: var(--ao-navy);
  color: #e2e8f0;
}

.ao-section--cta {
  background: linear-gradient(135deg, var(--ao-amber) 0%, #92400e 100%);
  color: var(--ao-white);
  text-align: center;
}

.ao-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ao-amber);
  margin: 0 0 10px;
  text-align: center;
}

.ao-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--ao-navy);
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: center;
}

.ao-section--dark h2,
.ao-section--cta h2 {
  color: var(--ao-white);
}

.ao-section__lead {
  text-align: center;
  color: var(--ao-slate);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ao-section--cta .ao-section__lead {
  color: rgba(255, 255, 255, 0.9);
}

/* Reveal animations */
.ao-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ao-ease), transform 0.75s var(--ao-ease);
}

.ao-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ao-reveal--delay-1 { transition-delay: 0.1s; }
.ao-reveal--delay-2 { transition-delay: 0.2s; }
.ao-reveal--delay-3 { transition-delay: 0.3s; }

/* Grid & cards */
.ao-grid {
  display: grid;
  gap: 28px;
}

.ao-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ao-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ao-card {
  background: var(--ao-white);
  border-radius: var(--ao-radius);
  overflow: hidden;
  box-shadow: var(--ao-shadow);
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--ao-accent, var(--ao-amber));
  transition: transform 0.4s var(--ao-ease), box-shadow 0.4s;
}

.ao-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ao-shadow-lg);
}

.ao-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ao-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ao-ease);
}

.ao-card:hover .ao-card__img img {
  transform: scale(1.06);
}

.ao-card__body {
  padding: 26px;
}

.ao-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--ao-navy);
}

.ao-card p {
  margin: 0 0 16px;
  color: var(--ao-text-muted);
  font-size: 0.95rem;
}

.ao-stat {
  text-align: center;
  padding: 28px 20px;
}

.ao-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--ao-amber);
  margin-bottom: 6px;
}

/* Split layout — alternate image left / text left via grid order */
.ao-split--reverse .ao-split__img,
.ao-split--mirror .ao-split__img {
  order: 2;
}

.ao-split--reverse .ao-split__content,
.ao-split--mirror > :not(.ao-split__img) {
  order: 1;
}

.ao-series-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 72px;
}

.ao-series-stack .ao-split + .ao-split {
  margin-top: 0;
}

.ao-series-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 10px 18px;
  min-height: 2.25rem;
  border-radius: 999px;
  background: var(--ao-amber);
  color: var(--ao-white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(180, 83, 9, 0.28);
}

.ao-rentals-series.ao-split {
  align-items: center;
}

.ao-rentals-series .ao-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ao-rentals-series .ao-btn {
  margin-top: 16px;
  width: fit-content;
  max-width: 100%;
}

.ao-testimonials {
  margin-top: 32px;
}

.ao-testimonial {
  margin: 0;
  padding: 28px;
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius);
  box-shadow: var(--ao-shadow);
}

.ao-testimonial p {
  margin: 0 0 16px;
  color: var(--ao-text);
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
}

.ao-testimonial footer {
  color: var(--ao-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ao-meetrigs-fleet {
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.ao-meetrigs-fleet .ao-section__eyebrow {
  margin-top: 0;
}

.ao-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ao-split__img {
  border-radius: var(--ao-radius);
  overflow: hidden;
  box-shadow: var(--ao-shadow-lg);
}

.ao-split__img img {
  width: 100%;
  display: block;
}

.ao-split__content h2,
.ao-split h2 {
  text-align: left;
  margin-bottom: 20px;
}

.ao-split__content p,
.ao-split p {
  color: var(--ao-text-muted);
  margin: 0 0 16px;
}

/* Steps */
.ao-steps {
  counter-reset: step;
}

.ao-step {
  position: relative;
  text-align: center;
}

.ao-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-weight: 800;
  border-radius: 50%;
  font-size: 1.1rem;
}

/* Stakes panels */
.ao-section--stakes {
  background: linear-gradient(165deg, #e2e8f0 0%, var(--ao-bg-alt) 42%, #f8fafc 100%);
}

.ao-panel {
  position: relative;
  padding: 36px 36px 32px 44px;
  border-radius: var(--ao-radius);
  border: 1px solid transparent;
  box-shadow: var(--ao-shadow);
  overflow: hidden;
  transition: transform 0.35s var(--ao-ease), box-shadow 0.35s var(--ao-ease);
}

.ao-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.ao-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.ao-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--ao-shadow-lg);
}

.ao-panel h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ao-panel--success {
  background: linear-gradient(145deg, #ffffff 0%, #ecfdf5 48%, #d1fae5 100%);
  border-color: rgba(22, 163, 74, 0.22);
}

.ao-panel--success::before {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
}

.ao-panel--success::after {
  background: #16a34a;
}

.ao-panel--success h3 {
  color: #14532d;
}

.ao-panel--danger {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 48%, #fecaca 100%);
  border-color: rgba(220, 38, 38, 0.2);
}

.ao-panel--danger::before {
  background: linear-gradient(180deg, #ef4444 0%, #991b1b 100%);
}

.ao-panel--danger::after {
  background: #dc2626;
}

.ao-panel--danger h3 {
  color: #7f1d1d;
}

.ao-panel ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ao-text);
}

.ao-panel li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.ao-panel li:last-child {
  margin-bottom: 0;
}

.ao-panel--success li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #15803d);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(21, 128, 61, 0.35);
}

.ao-panel--danger li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #f87171, #b91c1c);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(185, 28, 28, 0.35);
}

/* Booking iframe */
.ao-booking {
  padding: 64px 0 96px;
  background: var(--ao-bg);
}

.ao-booking__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}

.ao-booking__intro h2 {
  color: var(--ao-navy);
}

.ao-booking__intro p {
  color: var(--ao-slate);
}

.ao-booking__frame-wrap {
  background: var(--ao-white);
  border-radius: var(--ao-radius);
  box-shadow: var(--ao-shadow-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(20px);
  animation: ao-fade-up 0.8s var(--ao-ease) 0.3s forwards;
}

.ao-booking-iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: none;
}

.ao-page-book .ao-booking {
  padding-top: calc(var(--ao-header-h) + 32px);
}

.ao-page-book .ao-booking-iframe {
  min-height: 1100px;
}

body.ao-page-privacy-policy .ao-main {
  padding-top: calc(var(--ao-header-h) + 40px);
}

/* Rig page */
.ao-rig-hero .ao-hero__bg {
  animation: none;
  transform: scale(1);
}

/* Footer */
.ao-footer {
  background: var(--ao-navy);
  color: #94a3b8;
  padding: 64px 0 32px;
}

.ao-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.ao-footer h4 {
  color: var(--ao-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.ao-footer a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.ao-footer a:hover {
  color: var(--ao-gold);
}

.ao-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

/* Marquee accent */
.ao-marquee {
  overflow: hidden;
  background: var(--ao-navy-mid);
  padding: 14px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.ao-marquee__track {
  display: flex;
  gap: 48px;
  animation: ao-marquee 28s linear infinite;
  white-space: nowrap;
}

.ao-marquee__track span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes ao-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Content pages */
.ao-prose {
  color: var(--ao-text-muted);
  line-height: 1.75;
}

.ao-prose p,
.ao-prose ul {
  margin: 0 0 16px;
}

.ao-prose__list,
.ao-prose ul {
  padding-left: 20px;
}

.ao-prose__list li,
.ao-prose ul li {
  margin-bottom: 8px;
}

.ao-faq {
  max-width: 820px;
  margin: 0 auto;
}

.ao-faq__item {
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius-sm);
  margin-bottom: 12px;
  background: var(--ao-white);
  overflow: hidden;
}

.ao-faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ao-navy);
  list-style: none;
}

.ao-faq__item summary::-webkit-details-marker {
  display: none;
}

.ao-faq__item summary::after {
  content: '+';
  float: right;
  color: var(--ao-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.ao-faq__item[open] summary::after {
  content: '−';
}

.ao-faq__body {
  padding: 0 22px 18px;
  color: var(--ao-text-muted);
  border-top: 1px solid var(--ao-border);
}

.ao-faq__body p:last-child {
  margin-bottom: 0;
}

.ao-info.ao-faq {
  max-width: 960px;
}

.ao-info__item summary {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.ao-info__highlights {
  margin-bottom: 40px;
}

.ao-info__highlights .ao-stat span {
  display: block;
  font-size: 0.88rem;
  color: var(--ao-text-muted);
  line-height: 1.45;
}

.ao-info__highlights .ao-stat strong {
  font-size: 1.65rem;
}

.ao-info .ao-prose {
  font-size: 0.95rem;
}

.ao-info .ao-prose p:last-child,
.ao-info .ao-prose ul:last-child {
  margin-bottom: 0;
}

.ao-info__terms-cta {
  margin-top: 48px;
  text-align: center;
}

.ao-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.ao-feature-grid .ao-feature-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ao-feature-card p {
  font-size: 0.95rem;
}

.ao-route {
  margin-bottom: 48px;
}

.ao-route:last-child {
  margin-bottom: 0;
}

.ao-video-grid {
  margin-top: 32px;
}

.ao-video {
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius);
  overflow: hidden;
  box-shadow: var(--ao-shadow);
}

.ao-video__embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.ao-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ao-video__body {
  padding: 20px;
}

.ao-video__channel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ao-gold);
  margin: 0 0 8px;
}

.ao-video__body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.ao-video__body p {
  margin: 0;
  color: var(--ao-text-muted);
  font-size: 0.92rem;
}

.ao-addon-grid .ao-addon__img {
  height: 140px;
}

.ao-addon-grid .ao-addon__img img {
  object-fit: contain;
  background: #f8fafc;
}

.ao-addon .ao-card__body h3 {
  font-size: 1rem;
}

.ao-jobs-intro {
  max-width: 760px;
  margin: 0 auto;
}

.ao-jobs-intro h2,
.ao-jobs-intro h3 {
  margin-bottom: 12px;
}

.ao-jobs-intro__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ao-jobs-intro__subhead {
  margin: 28px 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ao-amber);
}

.ao-jobs-list {
  margin: 0 0 24px;
  padding-left: 1.25rem;
  display: grid;
  gap: 12px;
}

.ao-jobs-list li {
  line-height: 1.65;
  color: var(--ao-text);
}

.ao-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.ao-form-card {
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius);
  box-shadow: var(--ao-shadow);
  padding: 32px;
}

.ao-form {
  display: grid;
  gap: 20px;
}

.ao-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ao-navy);
}

.ao-form__field input,
.ao-form__field select,
.ao-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ao-border);
  border-radius: var(--ao-radius-sm);
  background: var(--ao-white);
  color: var(--ao-navy);
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ao-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ao-form__field input:focus,
.ao-form__field select:focus,
.ao-form__field textarea:focus {
  outline: 2px solid rgba(180, 83, 9, 0.35);
  border-color: var(--ao-amber);
}

.ao-form__fineprint {
  font-size: 0.85rem;
  color: var(--ao-text-muted);
  line-height: 1.5;
}

.ao-form__notice {
  padding: 14px 16px;
  border-radius: var(--ao-radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.ao-form__notice--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.ao-form__notice--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.ao-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 24px;
  font-size: 1rem;
}

.ao-addon .ao-card__body p {
  font-size: 0.88rem;
}

.ao-step-list {
  counter-reset: ao-step;
  display: grid;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.ao-step-list__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}

.ao-step-list__item::before {
  counter-increment: ao-step;
  content: counter(ao-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-weight: 800;
}

.ao-step-list__item h3 {
  margin: 0 0 8px;
  color: var(--ao-navy);
}

.ao-rig-section {
  margin: 40px 0;
}

.ao-rig-section h2 {
  margin: 0 0 16px;
  color: var(--ao-navy);
}

.ao-checklist {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ao-text-muted);
  line-height: 1.9;
}

.ao-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ao-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--ao-radius-sm);
  overflow: hidden;
}

.ao-gallery__item img,
.ao-gallery img {
  width: 100%;
  border-radius: var(--ao-radius-sm);
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s var(--ao-ease);
}

.ao-gallery__item:hover img {
  transform: scale(1.03);
}

.ao-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.ao-lightbox[hidden] {
  display: none;
}

.ao-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
}

.ao-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 72px 64px;
}

.ao-lightbox__img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--ao-radius-sm);
  box-shadow: var(--ao-shadow-lg);
}

.ao-lightbox__close,
.ao-lightbox__nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ao-white);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s;
}

.ao-lightbox__close:hover,
.ao-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ao-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
}

.ao-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.ao-lightbox__nav--prev {
  left: 20px;
}

.ao-lightbox__nav--next {
  right: 20px;
}

body.ao-lightbox-open {
  overflow: hidden;
}

.ao-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ao-guide-card {
  text-align: center;
  padding: 24px;
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius);
}

.ao-guide-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.ao-guide-card h3 {
  margin: 0 0 8px;
}

.ao-guide-card p {
  color: var(--ao-text-muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
}

.ao-blog-links {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.ao-blog-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  border-left: 4px solid var(--ao-amber);
  border-radius: var(--ao-radius);
  box-shadow: var(--ao-shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.ao-blog-link strong {
  color: var(--ao-navy);
  transition: color 0.2s;
}

.ao-blog-link::after {
  content: '↗';
  flex-shrink: 0;
  color: var(--ao-amber);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s var(--ao-ease), color 0.2s;
}

.ao-blog-link:hover,
.ao-blog-link:focus-visible {
  border-color: var(--ao-gold);
  background: var(--ao-bg-alt);
  box-shadow: var(--ao-shadow-lg);
  transform: translateY(-2px);
}

.ao-blog-link:hover strong,
.ao-blog-link:focus-visible strong {
  color: var(--ao-amber);
}

.ao-blog-link:hover::after,
.ao-blog-link:focus-visible::after {
  color: var(--ao-amber-hover);
  transform: translate(2px, -2px);
}

.ao-blog-link:focus-visible {
  outline: 2px solid var(--ao-amber);
  outline-offset: 2px;
}

.ao-blog-link span {
  color: var(--ao-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ao-callout {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--ao-radius);
  padding: 28px 32px;
}

.ao-callout h3 {
  margin: 0 0 12px;
  color: #9a3412;
}

.ao-callout--action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}

.ao-callout__content {
  flex: 1;
  min-width: 0;
}

.ao-callout__content p:last-child {
  margin-bottom: 0;
}

.ao-callout__action {
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 960px) {
  .ao-nav {
    position: fixed;
    inset: var(--ao-header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ao-navy);
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ao-ease), opacity 0.4s;
  }

  .ao-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }

  .ao-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ao-nav-dropdown {
    width: 100%;
  }

  .ao-nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .ao-nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    margin: 4px 0 8px;
    display: none;
    border-radius: var(--ao-radius-sm);
  }

  .ao-nav-dropdown.is-open .ao-nav-dropdown__menu {
    display: block;
  }

  .ao-nav-dropdown:hover .ao-nav-dropdown__menu {
    display: none;
  }

  .ao-nav-dropdown.is-open:hover .ao-nav-dropdown__menu {
    display: block;
  }

  .ao-menu-toggle {
    display: block;
  }

  .ao-header__right {
    flex: 0 0 auto;
    gap: 0;
  }

  .ao-header__actions {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }

  .ao-split {
    grid-template-columns: 1fr;
  }

  .ao-callout--action {
    flex-direction: column;
    align-items: stretch;
  }

  .ao-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ao-guide-grid {
    grid-template-columns: 1fr;
  }

  .ao-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ao-section {
    padding: 64px 0;
  }

  .ao-footer__grid {
    grid-template-columns: 1fr;
  }

  .ao-booking-iframe {
    min-height: 780px;
  }
}
