/* ============================================================================
   LARENAWATER LANDING — Sky-Blue Water Theme
   Deep-navy text, alice-blue page base, sky-blue accents.
   Display font: Plus Jakarta Sans · Mono labels: Space Mono · Body: Inter
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ax-bg:        #ffffff;   /* pure white — clean professional base */
  --ax-white:     #ffffff;
  --ax-gray:      #f4f9ff;   /* barely-blue white — alternating sections */
  --ax-ink:       #0c2340;   /* deep navy — heading/dark text */
  --ax-ink-soft:  #3d6080;   /* ocean blue-gray body text */
  --ax-muted:     #6b8fa8;   /* muted steel-blue */
  --ax-line:      #c4ddf0;   /* light blue border */
  --ax-line-2:    #9fc4e0;   /* medium blue border */
  --ax-grid:      rgba(12,35,64,.06);  /* navy-tinted grid */
  --ax-accent:    #38bdf8;   /* sky blue (cards / icons) */
  --ax-accent-d:  #0ea5e9;   /* ocean blue (hover / focus) */
  --ax-orange:    #F26522;   /* kept for legacy compatibility */
  --ax-orange-d:  #e05a1a;
  --ax-yellow:    #ffe14d;   /* kept for CTA button contrast */
  --ax-yellow-d:  #f6d22b;

  /* Nav square colors — water spectrum */
  --ax-sq1: #06b6d4; --ax-sq2: #0ea5e9; --ax-sq3: #3b82f6; --ax-sq4: #06d6a0;

  --ax-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ax-mono:    'Space Mono', ui-monospace, 'Cascadia Code', Menlo, monospace;

  --ax-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ax-sheet-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ax-max: 1200px;
}

[data-theme="dark"] {
  --ax-bg:        #081225;   /* deep obsidian blue background */
  --ax-white:     #0c1930;   /* dark card background */
  --ax-gray:      #0e1f3b;   /* slightly lighter blue-black for alt sections */
  --ax-ink:       #f4f9ff;   /* clean sky white for titles */
  --ax-ink-soft:  #a5c2eb;   /* readable soft blue-gray for body text */
  --ax-muted:     #6b8fa8;   /* kept for muted elements */
  --ax-line:      #1a335c;   /* dark blue border */
  --ax-line-2:    #2b4e85;   /* medium-dark blue border */
  --ax-grid:      rgba(255, 255, 255, 0.04); /* faint grid */
  --ax-accent:    #0ea5e9;   /* ocean blue accent */
  --ax-accent-d:  #38bdf8;   /* brighter sky blue for highlights in dark mode */
  --ax-yellow:    #ffe14d;   /* keep yellow contrast */
  --ax-yellow-d:  #f6d22b;
  --ax-orange:    #F26522;
  --ax-orange-d:  #e05a1a;

  /* Nav square colors — water spectrum */
  --ax-sq1: #06b6d4; --ax-sq2: #0ea5e9; --ax-sq3: #3b82f6; --ax-sq4: #06d6a0;

  /* Custom component tokens used by lw-* */
  --lw-accent:       #38bdf8;   /* bright sky blue */
  --lw-accent-dark:  #0ea5e9;   /* ocean blue hover */
  --lw-accent-soft:  rgba(56,189,248,.12);
  --lw-border:       #1a335c;   /* dark border matching ax-line */
  --lw-border-focus: #38bdf8;
  --lw-input-bg:     #0c1930;   /* input matches card color */
  --lw-text:         #f4f9ff;   /* readable sky white */
  --lw-muted:        #8daac4;   /* lighter steel blue */
}

/* ── Specific Dark Theme Selector Overrides ──────────────────────────────── */
[data-theme="dark"] .ax-bento--ink {
  background: var(--ax-gray);
  border-color: var(--ax-line);
}
[data-theme="dark"] .ax-bento--ink .ax-bento-title {
  color: var(--ax-ink);
}
[data-theme="dark"] #stickyNav .ax-navwrap {
  background: rgba(12, 25, 48, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .lw-modal {
  background: var(--ax-white) !important;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .lw-modal-body {
  background: var(--ax-white) !important;
}
[data-theme="dark"] .lw-modal-head {
  background: var(--ax-white) !important;
  border-bottom-color: var(--ax-line);
}
[data-theme="dark"] .lw-modal-footer {
  background: var(--ax-gray) !important;
  border-top-color: var(--ax-line) !important;
}
[data-theme="dark"] .lw-modal-close {
  background: var(--ax-gray);
  border-color: var(--ax-line);
}
[data-theme="dark"] .lw-modal-close:hover {
  background: var(--ax-line);
}
[data-theme="dark"] .ax-burger {
  background: var(--ax-gray);
  color: var(--ax-ink);
}
[data-theme="dark"] .ax-btn--dark {
  background: var(--ax-white);
  color: var(--ax-ink) !important;
  border: 1px solid var(--ax-line);
}
[data-theme="dark"] .ax-btn--dark:hover {
  background: var(--ax-gray);
}
[data-theme="dark"] .ax-footer {
  background: #050b18;
}
[data-theme="dark"] .ax-cta-section {
  background: #050b18;
  border-top: 1px solid var(--ax-line);
  border-bottom: 1px solid var(--ax-line);
}
[data-theme="dark"] .ax-trust-logo {
  color: var(--ax-ink-soft);
  border-right-color: var(--ax-line);
}
[data-theme="dark"] .ax-scenic-overlay {
  background: linear-gradient(
    100deg,
    rgba(5, 11, 24, 0.95) 0%,
    rgba(8, 20, 44, 0.85) 55%,
    rgba(12, 30, 60, 0.6) 100%
  );
}

/* ── Theme toggle button ────────────────────────────────────────────────── */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ax-line);
  background: var(--ax-white);
  color: var(--ax-ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ax-ease), border-color .3s var(--ax-ease), transform .3s var(--ax-ease);
  flex: none;
}
.theme-toggle-btn:hover {
  background: var(--ax-gray);
  border-color: var(--ax-line-2);
  transform: scale(1.05);
}
.theme-toggle-btn i {
  font-size: 1.15rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
[data-theme="light"] .theme-toggle-btn .sun-icon {
  transform: translateY(24px) rotate(45deg);
  opacity: 0;
  position: absolute;
}
[data-theme="light"] .theme-toggle-btn .moon-icon {
  transform: translateY(0) rotate(0);
  opacity: 1;
}
[data-theme="dark"] .theme-toggle-btn .sun-icon {
  transform: translateY(0) rotate(0);
  opacity: 1;
}
[data-theme="dark"] .theme-toggle-btn .moon-icon {
  transform: translateY(-24px) rotate(-45deg);
  opacity: 0;
  position: absolute;
}

/* ── Base overrides ──────────────────────────────────────────────────────── */
body {
  background: var(--ax-bg) !important;
  color: var(--ax-ink) !important;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
}

.ax-wrap {
  max-width: var(--ax-max);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 640px)  { .ax-wrap { padding-inline: 32px; } }
@media (min-width: 1024px) { .ax-wrap { padding-inline: 48px; } }

/* Shared typographic treatment — chunky display headings */
.ax-headline {
  font-family: var(--ax-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ax-ink);
  margin: 0;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
}

.ax-h2 {
  font-family: var(--ax-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ax-ink);
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.ax-lead {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ax-ink);
}
@media (min-width: 1024px) { .ax-lead { font-size: 16px; line-height: 1.65; } }

/* ── Buttons: text-roll ──────────────────────────────────────────────────── */
.ax-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .4s var(--ax-ease);
}
.ax-btn-roll {
  display: block;
  height: 20px;
  overflow: hidden;
}
.ax-btn-roll > span {
  display: block;
  height: 20px;
  line-height: 20px;
  transition: transform .5s var(--ax-ease);
}
.ax-btn:hover .ax-btn-roll > span { transform: translateY(-100%); }

.ax-btn-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  font-size: 15px;
  transition: transform .5s var(--ax-ease);
}
.ax-btn:hover .ax-btn-arrow { transform: rotate(-45deg); }

.ax-btn--orange { background: var(--ax-orange); color: #fff; }
.ax-btn--orange:hover { background: var(--ax-orange-d); color: #fff; }
.ax-btn--orange .ax-btn-arrow { color: var(--ax-orange); }

/* Teak-style solid buttons: bold display text + ▶ caret (no circle) */
.ax-btn--dark,
.ax-btn--yellow {
  font-family: var(--ax-display);
  font-weight: 700;
  gap: 8px;
  padding: 11px 22px;
  font-size: 14px;
}
.ax-btn--dark { background: var(--ax-ink); color: #fff; }
.ax-btn--dark:hover { color: #fff; opacity: .9; }
.ax-btn--yellow { background: var(--ax-yellow); color: #2a2018; font-size: 15px; padding: 13px 26px; }
.ax-btn--yellow:hover { background: var(--ax-yellow-d); color: #2a2018; }
.ax-btn-caret { font-size: 11px; }

/* ── Navbar (Teak style) ─────────────────────────────────────────────────── */
.ax-navwrap { position: relative; z-index: 20; padding: 16px 20px; }
@media (min-width: 640px) { .ax-navwrap { padding: 20px 28px; } }

.ax-nav {
  max-width: var(--ax-max);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.ax-nav-left { display: flex; align-items: center; gap: 26px; }

.ax-brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.ax-brand img { width: 32px; height: 32px; object-fit: contain; flex: none; }
.ax-brand-name { font-family: var(--ax-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ax-ink); }
.ax-brand-name b { color: var(--ax-accent-d); font-weight: 800; }

/* centered link box with colored squares */
.ax-nav-box { display: none; }
@media (min-width: 860px) {
  .ax-nav-box {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--ax-white);
    border: 1px solid var(--ax-line);
    border-radius: 9px;
    padding: 5px;
  }
}
.ax-navlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ax-mono); font-size: 13px;
  color: var(--ax-ink); text-decoration: none;
  padding: 6px 11px; border-radius: 6px;
  transition: background-color .2s var(--ax-ease);
}
.ax-navlink:hover { background: var(--ax-gray); }
.ax-sq { width: 11px; height: 11px; border-radius: 2px; flex: none; }

.ax-nav-right { display: flex; align-items: center; gap: 18px; }
.ax-login {
  display: none; font-family: var(--ax-mono); font-size: 13px;
  color: var(--ax-ink-soft); text-decoration: none;
}
@media (min-width: 860px) { .ax-login { display: inline; } .ax-login:hover { color: var(--ax-ink); } }

.ax-burger {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border: 0; border-radius: 999px;
  background: var(--ax-ink); color: #fff;
  font-size: 18px; cursor: pointer;
  flex: none;
}
@media (min-width: 860px) { .ax-burger { display: none; } }

/* ── Mobile sheet menu ───────────────────────────────────────────────────── */
/* visibility keeps element in render tree so CSS transitions work on open/close.
   The 0.5s delay on hidden lets the close animation finish before disappearing. */
.ax-sheet {
  position: fixed; inset: 0; z-index: 9999;
  visibility: hidden; pointer-events: none;
  transition: visibility 0s .5s;
}
.ax-sheet.open {
  visibility: visible; pointer-events: auto;
  transition-delay: 0s;
}

.ax-sheet-back {
  position: absolute; inset: 0;
  background: rgba(12,35,64,.55);
  opacity: 0;
  transition: opacity .35s ease;
}
.ax-sheet.open .ax-sheet-back { opacity: 1; }

.ax-sheet-panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--ax-white);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  max-height: 90vh;
  display: flex; flex-direction: column;
  transform: translateY(110%);
  transition: transform .45s var(--ax-sheet-ease);
}
.ax-sheet.open .ax-sheet-panel { transform: translateY(0); }

/* Sticky header row */
.ax-sheet-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ax-line);
  flex-shrink: 0;
}
.ax-sheet-time {
  font-family: var(--ax-mono);
  font-size: 12px; letter-spacing: .04em;
  color: var(--ax-ink-soft);
  display: flex; align-items: center; gap: 6px;
}

/* Scrollable nav links */
.ax-sheet-links {
  display: flex; flex-direction: column;
  overflow-y: auto; flex: 1;
}
.ax-sheet-links a {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ax-display);
  font-size: 16px; font-weight: 600; letter-spacing: -.01em;
  color: var(--ax-ink); text-decoration: none;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ax-line);
  transition: background .18s, padding-left .18s;
}
.ax-sheet-links a:last-child { border-bottom: 0; }
.ax-sheet-links a:active { background: var(--ax-gray); }
.ax-sheet-links a .ax-sl-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; flex: none;
  border-radius: 10px;
  background: rgba(56,189,248,.1);
  color: var(--ax-accent-d);
  font-size: 16px;
}
.ax-sheet-links a .ax-sl-label { flex: 1; }
.ax-sheet-links a .ax-sl-chevron { font-size: 12px; color: var(--ax-muted); }

/* Footer CTA area */
.ax-sheet-footer {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 20px 32px;
  border-top: 1px solid var(--ax-line);
  flex-shrink: 0;
}
.ax-sheet-footer .ax-btn {
  width: 100%; justify-content: center;
}

/* Close button */
.ax-sheet-close {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--ax-line); border-radius: 999px;
  background: var(--ax-gray); color: var(--ax-ink);
  font-size: 16px; cursor: pointer;
  flex: none;
  transition: background .2s, border-color .2s;
}
.ax-sheet-close:hover { background: var(--ax-line); }

/* ── Hero (Teak style, left-aligned) ─────────────────────────────────────── */
.ax-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ax-bg);
  overflow: hidden;
}
/* faint grid that fades out toward the bottom */
.ax-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--ax-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ax-grid) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(135% 100% at 50% 0%, #000 50%, transparent 100%);
          mask-image: radial-gradient(135% 100% at 50% 0%, #000 50%, transparent 100%);
}
.ax-hero > * { position: relative; z-index: 1; }

.ax-hero-spacer { flex: 0 0 auto; height: clamp(40px, 11vh, 120px); }

.ax-hero-content {
  max-width: var(--ax-max);
  margin-inline: auto;
  width: 100%;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .ax-hero-content { padding: 0 28px 80px; } }
@media (min-width: 992px) {
  .ax-hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
  }
}

/* ── Hero 3D Image Carousel ──────────────────────────────────────────────── */
.ax-hero-right {
  display: flex;
  justify-content: center;
  width: 100%;
}
.ax-carousel-3d {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
}
.ax-carousel-3d-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.ax-carousel-3d-slide {
  position: absolute;
  width: 220px;
  height: 290px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12,35,64,0.14);
  border: 1px solid var(--ax-line);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, filter 0.6s, z-index 0s;
  background: var(--ax-white);
  cursor: pointer;
}
[data-theme="dark"] .ax-carousel-3d-slide {
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: var(--ax-line);
}
.ax-carousel-3d-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Positioning classes */
.ax-carousel-3d-slide.slide-prev {
  transform: translateX(-120px) translateZ(-100px) rotateY(25deg);
  opacity: 0.5;
  filter: blur(1.5px);
  z-index: 1;
}
.ax-carousel-3d-slide.slide-active {
  transform: translateX(0) translateZ(100px) rotateY(0deg);
  opacity: 1;
  filter: none;
  z-index: 3;
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.22);
}
[data-theme="dark"] .ax-carousel-3d-slide.slide-active {
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.4);
}
.ax-carousel-3d-slide.slide-active:hover {
  transform: translateX(0) translateZ(120px) rotateY(0deg) scale(1.02);
}
.ax-carousel-3d-slide.slide-next {
  transform: translateX(120px) translateZ(-100px) rotateY(-25deg);
  opacity: 0.5;
  filter: blur(1.5px);
  z-index: 1;
}
.ax-carousel-3d-slide.slide-hidden {
  transform: translateX(0) translateZ(-200px) rotateY(0deg);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.ax-headline { max-width: 14ch; }
.ax-hl {
  background: var(--ax-yellow);
  padding: 0 .1em;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.ax-subtext {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ax-ink-soft);
}
.ax-hero-cta { margin-top: 30px; }

.ax-stats-inline { display: flex; flex-wrap: wrap; gap: 26px 44px; margin-top: 44px; }
.ax-stat-i .v {
  font-family: var(--ax-display); font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1; color: var(--ax-ink);
}
.ax-stat-i .l { font-family: var(--ax-mono); font-size: 12px; color: var(--ax-muted); margin-top: 7px; }

/* ── Section shell ───────────────────────────────────────────────────────── */
.ax-section { background: var(--ax-white); padding: 64px 0; overflow: hidden; }
@media (min-width: 640px)  { .ax-section { padding: 80px 0; } }
@media (min-width: 1024px) { .ax-section { padding: 112px 0; } }
.ax-section--gray { background: var(--ax-gray); }

.ax-badge-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .ax-badge-row { margin-bottom: 32px; } }
.ax-badge-num {
  display: grid; place-items: center;
  width: 26px; height: 26px; flex: none;
  border-radius: 999px;
  background: var(--ax-ink); color: #fff;
  font-size: 11px; font-weight: 600;
}
@media (min-width: 640px) { .ax-badge-num { width: 28px; height: 28px; font-size: 12px; } }
.ax-badge-label {
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--ax-line);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--ax-ink);
}
@media (min-width: 640px) { .ax-badge-label { font-size: 13px; padding: 6px 16px; } }

/* ── Stats strip ─────────────────────────────────────────────────────────── */
.ax-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
@media (min-width: 1024px) { .ax-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.ax-stat-val {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1;
  color: var(--ax-ink);
}
.ax-stat-lbl { margin-top: 8px; font-size: 14px; color: var(--ax-ink-soft); }

/* ── About: 2-col Teak-style (left text | right bento+photo) ────────────── */
.ax-about2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .ax-about2-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
  }
}

.ax-about2-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media (min-width: 1024px) {
  .ax-about2-left {
    position: sticky;
    top: 100px; /* stays visible while right side scrolls */
  }
}

.ax-about2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 2×2 bento grid */
.ax-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .ax-bento-grid { grid-template-columns: 1fr; }
}

.ax-bento-card {
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid transparent;
  transition: transform .3s var(--ax-ease), box-shadow .3s var(--ax-ease);
}
.ax-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* Colour variants — water-spectrum */
.ax-bento--blue  { background: rgba(14,165,233,.1);  border-color: rgba(14,165,233,.2);  }
.ax-bento--yellow{ background: rgba(6,182,212,.12);  border-color: rgba(6,182,212,.28);  } /* teal/aqua */
.ax-bento--green { background: rgba(6,214,160,.1);   border-color: rgba(6,214,160,.25);  } /* aqua-green */
.ax-bento--ink   { background: var(--ax-ink); border-color: var(--ax-ink); }

.ax-bento-ico {
  font-size: 20px;
  line-height: 1;
}
.ax-bento--blue  .ax-bento-ico { color: var(--ax-accent-d); }
.ax-bento--yellow .ax-bento-ico { color: #0891b2; }  /* cyan-600 */
.ax-bento--green .ax-bento-ico { color: #059669; }
.ax-bento--ink   .ax-bento-ico { color: #7dd3fc; }   /* sky-300 on navy */

.ax-bento-title {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--ax-ink);
  margin: 0;
}
.ax-bento--ink .ax-bento-title { color: #fff; }

.ax-bento-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ax-ink-soft);
  margin: 0;
}
.ax-bento--ink .ax-bento-text { color: rgba(255,255,255,.65); }

/* Full-width photo below the bento grid */
.ax-about2-photo {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  display: block;
}


/* ── Generic card grid (services / reliability) ─────────────────────────── */
.ax-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px)  { .ax-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .ax-cards.ax-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.ax-card {
  background: var(--ax-white);
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  padding: 28px;
  transition: transform .4s var(--ax-ease), box-shadow .4s var(--ax-ease), border-color .4s var(--ax-ease);
}
.ax-section--gray .ax-card { background: var(--ax-white); }
.ax-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: var(--ax-line-2);
}
.ax-card-ico {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(56,189,248,.12);
  color: var(--ax-accent-d);
  font-size: 22px;
  margin-bottom: 18px;
}
.ax-card-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ax-ink); margin: 0 0 8px; }
.ax-card-text { font-size: 14px; line-height: 1.6; color: var(--ax-ink-soft); margin: 0; }

/* ── Team ────────────────────────────────────────────────────────────────── */
.ax-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px)  { .ax-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ax-team-grid { grid-template-columns: repeat(6, 1fr); } }
.ax-team-card { text-align: center; }
.ax-team-photo {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: var(--ax-gray); margin-bottom: 12px;
}
.ax-team-photo img { width: 100%; height: 100%; object-fit: cover; }
.ax-team-name { font-size: 14px; font-weight: 600; color: var(--ax-ink); margin: 0; }
.ax-team-role { font-size: 12px; color: var(--ax-muted); margin: 2px 0 0; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.ax-contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .ax-contact-grid { grid-template-columns: 5fr 7fr; gap: 48px; } }
.ax-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-top: 20px; }
.ax-contact-ico {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,189,248,.12); color: var(--ax-accent-d); font-size: 18px;
}
.ax-contact-item h6 { font-size: 14px; font-weight: 600; color: var(--ax-ink); margin: 0 0 2px; }
.ax-contact-item p { font-size: 14px; color: var(--ax-ink-soft); margin: 0; }
.ax-contact-card {
  background: var(--ax-white);
  border: 1px solid var(--ax-line);
  border-radius: 20px;
  padding: 28px;
}
@media (min-width: 640px) { .ax-contact-card { padding: 36px; } }

/* ── Sticky nav (floating pill bar) ─────────────────────────────────────── */
#stickyNav {
  position: fixed; top: 12px; left: 0; right: 0; z-index: 40;
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity .4s var(--ax-ease), transform .4s var(--ax-ease);
}
#stickyNav.sn-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#stickyNav .ax-navwrap {
  background: rgba(255,255,255,.97);
  border: 1px solid var(--ax-line);
  border-radius: 16px;
  margin: 0 16px;
  padding: 10px 20px;
  box-shadow: 0 4px 24px rgba(12,35,64,.09);
}
@media (min-width: 640px) { #stickyNav .ax-navwrap { margin: 0 28px; padding: 10px 24px; } }

/* ── Reused legacy bits (check list inside About) ───────────────────────── */
.ax-about-copy .lw-check-list { margin: 0; }
.ax-about-copy .lw-check-list li { color: var(--ax-ink); }
.ax-about-copy .lw-check-list i { color: var(--ax-accent-d); }

/* Inquiry form inputs (reuse .lw-input) tuned for the light card */
.ax-contact-card .lw-label { color: var(--ax-ink); font-weight: 500; font-size: 13px; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  transition: opacity .72s cubic-bezier(.16,1,.3,1),
              transform .72s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--ax-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

/* ── Burger click + attention animations ─────────────────────────────────── */
.ax-burger {
  transition: background-color .25s var(--ax-ease), transform .18s var(--ax-ease), color .25s;
}
.ax-burger:active { transform: scale(.82) !important; }

@keyframes ax-burger-pop {
  0%   { transform: scale(1); }
  30%  { transform: scale(.78); }
  65%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.ax-burger--pop { animation: ax-burger-pop .32s cubic-bezier(.34,1.56,.64,1); }

/* Subtle ring pulse — draws attention on mobile after page load */
@keyframes ax-burger-ring {
  0%   { box-shadow: 0 0 0 0 rgba(14,165,233,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(14,165,233,0); }
  100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}
.ax-burger--ring { animation: ax-burger-ring 1.1s ease 3; }

/* ── Reduced motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ax-btn-roll > span, .ax-btn-arrow, .ax-card, .ax-sheet-panel { transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ax-burger--pop, .ax-burger--ring { animation: none !important; }
}

/* ── Mobile nav: hide "Get Started" text button on tiny screens ─────────── */
@media (max-width: 479px) {
  .ax-hero .ax-nav-right .ax-btn--dark,
  #stickyNav .ax-nav-right .ax-btn--dark { display: none; }
}

/* ── Hero eyebrow label ──────────────────────────────────────────────────── */
.ax-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ax-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--ax-ink-soft); margin: 0 0 18px;
}
.ax-hero-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ax-accent-d); flex: none;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}
@media (prefers-reduced-motion: reduce) { .ax-hero-dot { animation: none; } }

/* ── Scenic history banner ───────────────────────────────────────────────── */
.ax-scenic-banner {
  position: relative;
  background: url('../assets/images/larena_siquijor_scenery.png') center center / cover no-repeat;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) { .ax-scenic-banner { min-height: 600px; } }

.ax-scenic-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    100deg,
    rgba(8,24,52,.92) 0%,
    rgba(10,40,80,.76) 55%,
    rgba(14,60,110,.48) 100%
  );
}
.ax-scenic-content {
  position: relative; z-index: 1;
  padding-top: 72px; padding-bottom: 72px;
  max-width: 760px;
}
.ax-scenic-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ax-mono); font-size: 12px; letter-spacing: .06em;
  color: rgba(255,255,255,.65); margin: 0 0 20px;
}
.ax-scenic-title {
  font-family: var(--ax-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.06;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 20px;
}
.ax-scenic-sub {
  font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.78);
  max-width: 640px; margin: 0 0 44px;
}
@media (min-width: 768px) { .ax-scenic-sub { font-size: 16px; } }

.ax-scenic-facts {
  display: flex; flex-wrap: wrap; gap: 20px 40px;
}
.ax-sfact {
  display: flex; flex-direction: column; gap: 4px;
}
.ax-sfact-v {
  font-family: var(--ax-display); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1;
  color: var(--ax-yellow);
}
.ax-sfact-l {
  font-family: var(--ax-mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}

/* ── Barangay chip grid ──────────────────────────────────────────────────── */
.ax-brgy-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ax-brgy-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ax-white);
  border: 1px solid var(--ax-line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--ax-ink);
  transition: background .25s var(--ax-ease), border-color .25s var(--ax-ease), transform .25s var(--ax-ease);
  cursor: default;
}
.ax-brgy-chip:hover {
  background: var(--ax-ink); color: #fff; border-color: var(--ax-ink);
  transform: translateY(-2px);
}
.ax-brgy-chip:hover .ax-brgy-icon { color: var(--ax-yellow); }
.ax-brgy-icon { font-size: 12px; color: var(--ax-accent-d); transition: color .25s; }

/* Active & Pending modifiers */
.ax-brgy-chip.ax-brgy-active {
  border-color: var(--ax-accent-d);
  background: rgba(14,165,233,.05);
}
.ax-brgy-chip.ax-brgy-active:hover {
  background: var(--ax-accent-d);
  border-color: var(--ax-accent-d);
}
.ax-brgy-chip.ax-brgy-pending {
  opacity: 0.6;
  border-style: dashed;
}
.ax-brgy-chip.ax-brgy-pending .ax-brgy-icon {
  color: var(--ax-muted);
}
.ax-brgy-chip.ax-brgy-pending:hover {
  background: var(--ax-white);
  color: var(--ax-ink);
  border-color: var(--ax-line);
  transform: none;
}


/* ── Trust / partner strip ───────────────────────────────────────────────── */
.ax-trust-strip {
  background: var(--ax-white);
  border-top: 1px solid var(--ax-line);
  border-bottom: 1px solid var(--ax-line);
  padding: 24px 0;
}
/* Hardcoded values so it renders correctly even if CSS vars aren't resolved yet */
.ax-trust-label {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: #6b8fa8;
  text-align: center; margin: 0 0 18px;
}

/* ── Mobile: infinite auto-scroll marquee ───────────────────────────────── */
.ax-trust-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.ax-trust-track {
  display: flex; align-items: center;
  width: max-content;
  animation: trust-marquee 25s linear infinite;
}
.ax-trust-logos:hover .ax-trust-track { animation-play-state: paused; }

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ax-trust-logo {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; flex: none;
  padding: 0 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px; line-height: 1.35;
  color: #3d6080; font-weight: 500;
  border-right: 1px solid #c4ddf0;
}
.ax-trust-logo i { font-size: 22px; color: #0ea5e9; flex: none; }

/* ── Desktop (≥768px): static divider row ────────────────────────────────── */
@media (min-width: 768px) {
  .ax-trust-logos {
    overflow: visible;
    -webkit-mask-image: none; mask-image: none;
    display: flex; align-items: center;
  }
  .ax-trust-track {
    display: flex; align-items: center;
    animation: none; width: 100%;
  }
  .ax-trust-dup { display: none; }
  .ax-trust-logo {
    flex: 1; justify-content: center;
    white-space: normal; padding: 0 20px;
    border-right: 1px solid #c4ddf0;
  }
  .ax-trust-logo:nth-child(5) { border-right: 0; }
}

/* ── Process steps (How it works) ───────────────────────────────────────── */
.ax-process-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.ax-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border: 1px solid var(--ax-line);
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ax-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.ax-pstep {
  display: flex; flex-direction: column; gap: 20px;
  padding: 32px 28px;
  background: var(--ax-white);
  border-bottom: 1px solid var(--ax-line);
  transition: background .3s var(--ax-ease);
}
@media (min-width: 768px) {
  .ax-pstep {
    border-bottom: 0;
    border-right: 1px solid var(--ax-line);
  }
  .ax-pstep:last-child { border-right: 0; }
}
.ax-pstep:hover { background: var(--ax-gray); }
.ax-pstep-num {
  font-family: var(--ax-mono); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1; color: var(--ax-line-2);
  letter-spacing: -0.03em;
}
.ax-pstep-title {
  font-family: var(--ax-display); font-weight: 700;
  font-size: 18px; color: var(--ax-ink); margin: 0 0 10px;
}
.ax-pstep-text {
  font-size: 14px; line-height: 1.6; color: var(--ax-ink-soft); margin: 0;
  flex: 1;
}
.ax-pstep-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ax-mono); font-size: 11px; letter-spacing: .04em;
  background: rgba(56,189,248,.1); color: var(--ax-accent-d);
  border-radius: 999px; padding: 5px 12px; align-self: flex-start;
}

/* ── Bottom CTA section ──────────────────────────────────────────────────── */
.ax-cta-section {
  background: var(--ax-ink);
  padding: 80px 0;
}
@media (min-width: 1024px) { .ax-cta-section { padding: 100px 0; } }

.ax-cta-inner {
  display: flex; flex-direction: column; gap: 40px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .ax-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
}
.ax-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ax-mono); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}
.ax-cta-title {
  font-family: var(--ax-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.06;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 16px;
}
.ax-cta-sub {
  font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.65);
  max-width: 580px; margin: 0;
}
.ax-cta-text { flex: 1; }
.ax-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  flex: none;
}

/* Ghost button (white outline, used in dark sections) */
.ax-btn--ghost {
  font-family: var(--ax-display); font-weight: 700;
  gap: 8px; padding: 11px 22px; font-size: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.ax-btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}


/* -- Footer (Teak-style dark) ---------------------------------------------- */
.ax-footer { background: var(--ax-ink); color: rgba(255,255,255,.7); }
.ax-footer-upper { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ax-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 640px)  { .ax-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ax-footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; } }
.ax-footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.ax-footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ax-footer-seal { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.ax-footer-wordmark { font-family: var(--ax-display); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #fff; }
.ax-footer-wordmark b { color: var(--ax-accent); }
.ax-footer-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 280px; margin: 0; }
.ax-footer-badges { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.ax-footer-badge-img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.08); padding: 3px; filter: brightness(0) invert(1); opacity: .55; }
.ax-footer-heading { font-family: var(--ax-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin: 0 0 14px; }
.ax-footer-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ax-footer-nav a { font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.ax-footer-nav a:hover { color: #fff; }
.ax-footer-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ax-footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.6); }
.ax-footer-contact-list i { font-size: 14px; color: var(--ax-accent); margin-top: 2px; flex: none; }
.ax-footer-maps { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
@media (min-width: 768px) { .ax-footer-maps { grid-template-columns: repeat(2, 1fr); } }
.ax-footer-map-label { font-family: var(--ax-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0 0 10px; display: flex; align-items: center; gap: 6px; }
.ax-footer-map-label i { color: var(--ax-accent); }
.ax-footer-map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.ax-footer-map-wrap iframe { display: block; width: 100%; height: 200px; border: 0; pointer-events: auto; }
.ax-footer-bar { padding: 20px 0; }
.ax-footer-bar .ax-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.ax-footer-bar p { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
.ax-footer-bar strong { color: rgba(255,255,255,.6); font-weight: 600; }

/* ── Source & Quality section (sq-*) ─────────────────────────────────────── */

.sq-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 640px;
}
.sq-head-sub {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ax-ink-soft);
}

/* ── Tips card grid ──────────────────────────────────────────────────────── */
.sq-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 640px)  { .sq-tips-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .sq-tips-grid { grid-template-columns: 1fr; } }

.sq-tip-card {
  background: var(--ax-white);
  border: 1px solid var(--ax-line);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .28s var(--ax-ease), transform .28s var(--ax-ease), border-color .28s;
}
.sq-tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ax-accent-d), var(--ax-accent));
  opacity: 0;
  transition: opacity .28s var(--ax-ease);
}
.sq-tip-card:hover {
  box-shadow: 0 10px 28px rgba(12,35,64,.1);
  transform: translateY(-3px);
  border-color: var(--ax-line-2);
}
.sq-tip-card:hover::before { opacity: 1; }

/* Step number — monospace label */
.sq-tip-num {
  font-family: var(--ax-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ax-accent-d);
  line-height: 1;
}

/* Card title — display font, one fixed size across all cards */
.sq-tip-title {
  font-family: var(--ax-display);
  font-size: 13.5px;         /* ← single value, no clamp = consistent height */
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;         /* ← tight, uniform */
  color: var(--ax-ink);
  margin: 0;
}

/* Card description — body font, fixed size */
.sq-tip-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ax-ink-soft);
  margin: 0;
}

/* ── Detail cards (source + reading) ─────────────────────────────────────── */
.sq-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .sq-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.sq-detail-card {
  background: var(--ax-white);
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  padding: 30px 32px;
  transition: box-shadow .3s var(--ax-ease), transform .3s var(--ax-ease), border-color .3s;
}
.sq-detail-card:hover {
  box-shadow: 0 14px 36px rgba(12,35,64,.09);
  transform: translateY(-4px);
  border-color: var(--ax-line-2);
}

.sq-detail-header {
  display: flex;
  align-items: center;       /* ← icon and title share the same center axis */
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ax-line);
}

/* Title sits on same baseline as the icon — no extra margin */
.sq-detail-title {
  font-family: var(--ax-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--ax-ink);
  margin: 0;
}

/* ── Feature list ────────────────────────────────────────────────────────── */
.sq-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sq-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

/* Icon pinned to cap-height of the first line of text */
.sq-feat-ico {
  font-size: 14px;
  color: var(--ax-accent-d);
  flex: none;
  margin-top: 2px;           /* ← aligns icon center to text cap-height */
  line-height: 1;
}

.sq-feat-body { flex: 1; }

/* Bold label — same family/size across both cards */
.sq-feat-title {
  display: block;
  font-family: var(--ax-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ax-ink);
}

/* Description — body */
.sq-feat-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ax-ink-soft);
  margin: 3px 0 0;
}


/* ============================================================================
   LW-* COMPONENTS — light/warm theme edition
   Login modal, form inputs, labels, and buttons adapted for axion.css's
   off-white (#F6F6F1) background. These replace the dark-theme versions that
   used to live in newstyle.css.
   ========================================================================== */


/* ── Shared tokens used by lw-* ─────────────────────────────────────────── */
:root {
  --lw-accent:       #0ea5e9;   /* ocean sky blue */
  --lw-accent-dark:  #0284c7;   /* deeper blue hover */
  --lw-accent-soft:  rgba(14,165,233,.08);
  --lw-border:       #c4ddf0;   /* light blue border (matches ax-line) */
  --lw-border-focus: #0ea5e9;
  --lw-input-bg:     #ffffff;
  --lw-text:         #0c2340;   /* deep navy (matches ax-ink) */
  --lw-muted:        #6b8fa8;   /* steel blue muted (matches ax-muted) */
  --lw-r:            8px;
  --lw-t:            0.18s ease;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.lw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; line-height: 1;
  padding: 13px 24px; border-radius: var(--lw-r);
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--lw-t), border-color var(--lw-t), color var(--lw-t);
  white-space: nowrap;
}
.lw-btn-primary {
  background: var(--lw-accent); color: #fff !important; border-color: var(--lw-accent);
}
.lw-btn-primary:hover {
  background: var(--lw-accent-dark); border-color: var(--lw-accent-dark); color: #fff !important;
}
.lw-btn-block { width: 100%; }

/* ── Form labels & inputs ────────────────────────────────────────────────── */
.lw-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--lw-text); margin-bottom: 7px;
}

.lw-input {
  width: 100%;
  border: 1px solid var(--lw-border) !important;
  border-radius: var(--lw-r) !important;
  padding: 12px 14px !important;
  color: var(--lw-text) !important;
  background: var(--lw-input-bg) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  transition: border-color var(--lw-t), box-shadow var(--lw-t) !important;
}
.lw-input:focus {
  border-color: var(--lw-border-focus) !important;
  box-shadow: 0 0 0 3px rgba(14,165,233,.12) !important;
  outline: none !important;
}
.lw-input::placeholder { color: #9e9a94 !important; }
textarea.lw-input { resize: vertical; min-height: 130px; }

/* Field with icon prefix */
.lw-field { position: relative; }
.lw-field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--lw-muted); font-size: 1rem; pointer-events: none;
  transition: color var(--lw-t);
}
.lw-field .lw-input { padding-left: 42px !important; }
.lw-field .lw-input.has-action { padding-right: 46px !important; }
.lw-field .lw-input:focus + .lw-field-icon,
.lw-field .lw-input:focus ~ .lw-field-icon { color: var(--lw-accent); }

.lw-field-toggle {
  position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: none; background: transparent;
  color: var(--lw-muted); border-radius: 7px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--lw-t), background var(--lw-t);
}
.lw-field-toggle:hover { color: var(--lw-accent); background: var(--lw-accent-soft); }

/* ── Modal ───────────────────────────────────────────────────────────────── */
/* Prevent Bootstrap scrollbar-compensation from shifting layout */
body.modal-open { padding-right: 0 !important; }

.lw-modal {
  border: none !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px -12px rgba(42,32,24,.18) !important;
  overflow: hidden;
  background: #ffffff !important;
}

.lw-modal-head {
  position: relative;
  padding: 36px 32px 24px;
  text-align: center;
  background: var(--ax-white);
  border-bottom: 1px solid var(--ax-line);
}
.lw-modal-badge {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lw-accent); font-size: 1.6rem;
}
.lw-modal-title {
  font-family: var(--ax-display); font-size: 1.3rem;
  font-weight: 700; color: var(--ax-ink); margin: 0 0 4px;
}
.lw-modal-subtitle { font-size: 0.9rem; color: var(--lw-muted); margin: 0; }

.lw-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ax-gray); border: 1px solid var(--ax-line);
  color: var(--lw-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; padding: 0;
  transition: background var(--lw-t), color var(--lw-t);
}
.lw-modal-close:hover { background: var(--ax-line); color: var(--ax-ink); }

.lw-modal-body {
  padding: 28px 32px;
  background: #ffffff;
}
/* Override Bootstrap's form-check-label inside the light modal */
.lw-modal .form-check-label,
.lw-modal .text-muted { color: var(--lw-muted) !important; }
.lw-modal a { color: var(--lw-accent); }

.lw-modal-footer {
  background: var(--ax-gray);
  border-top: 1px solid var(--ax-line) !important;
  padding: 18px 32px !important;
  text-align: center;
}
.lw-modal-footer p { color: var(--lw-text); }
.lw-modal-footer a { color: var(--lw-accent); font-weight: 600; }
.lw-modal-footer small { color: var(--lw-muted) !important; }

/* Contact card (inquiry form) */
.ax-contact-card .lw-btn { margin-top: 4px; }

