/* A.M Aqua Plus — fully scoped public styles. */
.amaq-theme {
  margin: 0;
  background: #ffffff;
  color: #1a2327;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.amaq-theme.amaq-menu-open {
  overflow: hidden;
}

.amaq-site {
  --amaq-navy: #0b3b54;
  --amaq-navy-deep: #08293b;
  --amaq-aqua: #1c8ca8;
  --amaq-aqua-light: #e4f3f6;
  --amaq-ink: #1a2327;
  --amaq-ink-soft: #57666c;
  --amaq-paper: #ffffff;
  --amaq-mist: #f4f8f9;
  --amaq-cta: #ff5a1f;
  --amaq-cta-deep: #e4460e;
  --amaq-line: #dcebee;
  --amaq-error: #b42318;
  --amaq-success: #18794e;
  --amaq-max-width: 1080px;
  min-width: 0;
  overflow: clip;
  background: var(--amaq-paper);
  color: var(--amaq-ink);
}

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

.amaq-site h1,
.amaq-site h2,
.amaq-site h3,
.amaq-site p,
.amaq-site figure,
.amaq-site ul {
  margin: 0;
}

.amaq-site h1,
.amaq-site h2,
.amaq-site h3 {
  color: var(--amaq-navy);
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.amaq-site a {
  color: inherit;
  text-decoration: none;
}

.amaq-site img,
.amaq-site svg {
  display: block;
  max-width: 100%;
}

.amaq-site button,
.amaq-site input,
.amaq-site select,
.amaq-site textarea {
  border-radius: 0;
  font: inherit;
}

.amaq-site button,
.amaq-site a {
  -webkit-tap-highlight-color: transparent;
}

.amaq-site :focus-visible,
.amaq-skip-link:focus {
  outline: 3px solid var(--amaq-cta, #ff5a1f);
  outline-offset: 3px;
}

.amaq-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99999;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: #ffffff;
  color: #0b3b54;
  font-weight: 700;
}

.amaq-skip-link:focus {
  transform: translateY(0);
}

.amaq-container {
  width: min(100% - 40px, var(--amaq-max-width));
  margin-inline: auto;
}

.amaq-topbar {
  background: var(--amaq-navy);
  color: #d9eaef;
  font-size: 0.8125rem;
}

.amaq-topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.amaq-topbar a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
}

.amaq-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--amaq-line);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.admin-bar .amaq-header {
  top: 32px;
}

.amaq-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(11, 59, 84, 0.1);
}

.amaq-header__inner {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.amaq-logo,
.amaq-footer__logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--amaq-navy);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
}

.amaq-logo__mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.amaq-logo__image {
  width: auto;
  max-width: 230px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.amaq-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 28px);
  padding: 0;
  list-style: none;
}

/* ── Liquid full-screen mobile menu ───────────────────── */
.amaq-liquid {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(165deg, #08293b 0%, #0b3b54 35%, #1c8ca8 100%);
  transition: visibility 0s 0.5s, opacity 0.4s ease;
}

.amaq-liquid.is-active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.4s ease;
}

/* ── Water waves at bottom ────────────────────────────── */
.amaq-liquid__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  overflow: hidden;
  pointer-events: none;
}

.amaq-liquid__wave {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 60%;
}

.amaq-liquid__wave--1 {
  animation: liquidWave1 8s ease-in-out infinite;
  opacity: 0.18;
}

.amaq-liquid__wave--2 {
  animation: liquidWave2 6s ease-in-out infinite;
  opacity: 0.12;
  bottom: -8%;
}

.amaq-liquid__wave--3 {
  animation: liquidWave3 10s ease-in-out infinite;
  opacity: 0.08;
  bottom: -16%;
}

@keyframes liquidWave1 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(3%) scaleY(1.15); }
}

@keyframes liquidWave2 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-4%) scaleY(1.2); }
}

@keyframes liquidWave3 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(2%) scaleY(1.1); }
}

/* ── Floating water bubbles ───────────────────────────── */
.amaq-liquid__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.amaq-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.15);
  animation: bubbleFloat linear infinite;
}

.amaq-bubble:nth-child(1) { left: 12%; width: 28px; height: 28px; animation-duration: 7s; animation-delay: 0s; }
.amaq-bubble:nth-child(2) { left: 28%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: 1s; }
.amaq-bubble:nth-child(3) { left: 55%; width: 20px; height: 20px; animation-duration: 6s; animation-delay: 0.5s; }
.amaq-bubble:nth-child(4) { left: 72%; width: 34px; height: 34px; animation-duration: 11s; animation-delay: 2s; }
.amaq-bubble:nth-child(5) { left: 85%; width: 12px; height: 12px; animation-duration: 8s; animation-delay: 1.5s; }
.amaq-bubble:nth-child(6) { left: 40%; width: 16px; height: 16px; animation-duration: 10s; animation-delay: 3s; }
.amaq-bubble:nth-child(7) { left: 8%;  width: 10px; height: 10px; animation-duration: 7.5s; animation-delay: 0.8s; }
.amaq-bubble:nth-child(8) { left: 65%; width: 22px; height: 22px; animation-duration: 9.5s; animation-delay: 2.5s; }

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) scale(0.4);
    opacity: 0;
  }
}

/* ── Close button ─────────────────────────────────────── */
.amaq-liquid__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 200ms ease, transform 200ms ease;
}

.amaq-liquid__close svg {
  width: 22px;
  height: 22px;
}

.amaq-liquid__close:hover,
.amaq-liquid__close:focus-visible {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg);
}

/* ── Liquid nav list ──────────────────────────────────── */
.amaq-liquid__nav {
  position: relative;
  z-index: 5;
  text-align: center;
}

.amaq-liquid__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
}

.amaq-liquid__list li {
  overflow: hidden;
}

.amaq-liquid__list a {
  display: inline-block;
  padding: 14px 32px;
  color: #ffffff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.75rem, 6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  transition: color 200ms ease, transform 200ms ease;
}

.amaq-liquid.is-active .amaq-liquid__list a {
  opacity: 1;
  transform: translateY(0);
}

.amaq-liquid__list a:hover,
.amaq-liquid__list a:focus-visible {
  color: var(--amaq-aqua-light, #e4f3f6);
}

/* Staggered entrance for each link */
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(1) a { transition-delay: 0.15s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(2) a { transition-delay: 0.25s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(3) a { transition-delay: 0.35s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(4) a { transition-delay: 0.45s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(5) a { transition-delay: 0.55s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(6) a { transition-delay: 0.65s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(7) a { transition-delay: 0.75s; }
.amaq-liquid.is-active .amaq-liquid__list li:nth-child(8) a { transition-delay: 0.85s; }

/* ── Liquid CTA button ────────────────────────────────── */
.amaq-liquid__cta {
  position: relative;
  z-index: 5;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.amaq-liquid.is-active .amaq-liquid__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.amaq-liquid__cta .amaq-button {
  min-height: 56px;
  padding: 14px 36px;
  font-size: 1.05rem;
}

.amaq-liquid__cta .amaq-button svg {
  width: 19px;
  height: 19px;
}

/* ── Reset transforms when closing ────────────────────── */
.amaq-liquid:not(.is-active) .amaq-liquid__list a {
  transition-delay: 0s;
}

.amaq-liquid:not(.is-active) .amaq-liquid__cta {
  transition-delay: 0s;
}

/* ── Desktop nav hides on mobile ──────────────────────── */
.amaq-nav--desktop {
  display: flex;
}

.amaq-nav__list a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--amaq-ink-soft);
  font-size: 0.90625rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.amaq-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--amaq-aqua);
  content: "";
  transition: transform 200ms ease;
}

.amaq-nav__list a:hover,
.amaq-nav__list a:focus-visible {
  color: var(--amaq-navy);
}

.amaq-nav__list a:hover::after,
.amaq-nav__list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.amaq-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--amaq-line);
  background: #ffffff;
  color: var(--amaq-navy);
  cursor: pointer;
}

.amaq-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transform-origin: center;
  background: currentcolor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.amaq-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.amaq-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.amaq-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.amaq-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0.90625rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.amaq-button:hover {
  transform: translateY(-2px);
}

.amaq-button:active {
  transform: translateY(0);
}

.amaq-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.amaq-button--primary {
  border-color: var(--amaq-cta);
  background: var(--amaq-cta);
  color: #ffffff;
}

.amaq-button--primary:hover,
.amaq-button--primary:focus-visible {
  border-color: var(--amaq-cta-deep);
  background: var(--amaq-cta-deep);
  color: #ffffff;
}

.amaq-button--outline {
  border-color: var(--amaq-navy);
  color: var(--amaq-navy);
}

.amaq-button--outline:hover,
.amaq-button--outline:focus-visible {
  background: var(--amaq-navy);
  color: #ffffff;
}

.amaq-button--light-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

.amaq-button--light-outline:hover,
.amaq-button--light-outline:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--amaq-navy);
}

.amaq-hero {
  position: relative;
  background: var(--amaq-aqua-light);
}

.amaq-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(34vw, 430px);
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 72%);
  content: "";
  pointer-events: none;
}

.amaq-hero__grid {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 62px);
  padding-block: clamp(46px, 6vw, 72px);
}

.amaq-eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--amaq-aqua);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.amaq-hero h1 {
  max-width: 670px;
  font-size: clamp(2.125rem, 4.2vw, 3.25rem);
  text-wrap: balance;
}

.amaq-hero__summary {
  max-width: 54ch;
  margin-top: 17px;
  color: var(--amaq-ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.075rem);
  line-height: 1.68;
}

.amaq-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.amaq-button-row--center {
  justify-content: center;
}

.amaq-hero__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  border: 1px solid rgba(28, 140, 168, 0.2);
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(11, 59, 84, 0.14);
}

.amaq-hero__photo::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.amaq-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.amaq-hero__image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
}

.amaq-section {
  padding-block: clamp(58px, 7vw, 82px);
  scroll-margin-top: 92px;
}

.amaq-section-heading {
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: center;
}

.amaq-section-heading .amaq-eyebrow {
  text-align: center;
}

.amaq-section-heading h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  text-wrap: balance;
}

.amaq-section-heading p {
  margin-top: 9px;
  color: var(--amaq-ink-soft);
  line-height: 1.65;
}

.amaq-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.amaq-service-card {
  position: relative;
  min-width: 0;
  padding: 26px 19px;
  border: 1px solid var(--amaq-line);
  background: #ffffff;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.amaq-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 140, 168, 0.45);
  box-shadow: 0 18px 36px rgba(11, 59, 84, 0.1);
}

.amaq-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  place-items: center;
  background: var(--amaq-aqua-light);
  color: var(--amaq-navy);
}

.amaq-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.amaq-service-card h3 {
  margin-bottom: 7px;
  font-size: 1.025rem;
}

.amaq-service-card p {
  color: var(--amaq-ink-soft);
  font-size: 0.875rem;
  line-height: 1.58;
}

.amaq-usp-strip {
  background: var(--amaq-navy);
  color: #ffffff;
}

.amaq-usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  padding-block: 35px;
}

.amaq-usp-item {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 11px;
}

.amaq-usp-item > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  fill: none;
  stroke: var(--amaq-aqua-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.amaq-usp-item h3 {
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0;
}

.amaq-usp-item p {
  color: #b9d2d9;
  font-size: 0.8rem;
  line-height: 1.45;
}

.amaq-faq {
  max-width: 720px;
  margin-inline: auto;
  border-top: 1px solid var(--amaq-line);
}

.amaq-faq__item {
  border-bottom: 1px solid var(--amaq-line);
}

.amaq-faq__item h3 {
  font-size: 1rem;
}

.amaq-faq__question {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 2px;
  border: 0;
  background: transparent;
  color: var(--amaq-navy);
  cursor: pointer;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  text-align: left;
}

.amaq-faq__question:hover {
  color: var(--amaq-aqua);
}

.amaq-faq__plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.amaq-faq__plus::before,
.amaq-faq__plus::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: currentcolor;
  content: "";
  transition: transform 200ms ease;
}

.amaq-faq__plus::after {
  transform: rotate(90deg);
}

.amaq-faq__question[aria-expanded="true"] .amaq-faq__plus::after {
  transform: rotate(0deg);
}

.amaq-faq__answer[hidden] {
  display: none;
}

.amaq-faq__answer p {
  padding: 0 42px 18px 2px;
  color: var(--amaq-ink-soft);
  font-size: 0.925rem;
  line-height: 1.7;
}

.amaq-book {
  background: var(--amaq-mist);
}

.amaq-book-card {
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(25px, 4vw, 36px);
  border: 1px solid var(--amaq-line);
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(11, 59, 84, 0.09);
}

.amaq-book-card > h2,
.amaq-form-success h2 {
  font-size: clamp(1.5rem, 2.7vw, 1.9rem);
}

.amaq-book-card__lead {
  margin-top: 7px;
  margin-bottom: 22px;
  color: var(--amaq-ink-soft);
  font-size: 0.9rem;
}

.amaq-form-error {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--amaq-error);
  background: #fff2f0;
  color: #7a271a;
  font-size: 0.875rem;
}

.amaq-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.amaq-field label {
  color: var(--amaq-navy);
  font-size: 0.8125rem;
  font-weight: 700;
}

.amaq-field input,
.amaq-field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1.5px solid var(--amaq-line);
  background: var(--amaq-mist);
  color: var(--amaq-ink);
  font-size: 1rem;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.amaq-field input:focus,
.amaq-field select:focus {
  border-color: var(--amaq-aqua);
  outline: 0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(28, 140, 168, 0.15);
}

.amaq-field input[aria-invalid="true"],
.amaq-field select[aria-invalid="true"] {
  border-color: var(--amaq-error);
  background: #fff8f7;
}

.amaq-field__error {
  min-height: 0;
  color: var(--amaq-error);
  font-size: 0.775rem;
}

.amaq-field__error:not(:empty) {
  min-height: 18px;
}

.amaq-form__submit {
  width: 100%;
  margin-top: 2px;
}

.amaq-form__privacy {
  margin-top: 11px;
  color: var(--amaq-ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.amaq-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.amaq-form-success {
  padding-block: 12px;
  text-align: center;
}

.amaq-form-success svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  fill: none;
  stroke: var(--amaq-success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.amaq-form-success p {
  margin-top: 8px;
  color: var(--amaq-ink-soft);
}

.amaq-final-cta {
  background: var(--amaq-navy);
  color: #ffffff;
  text-align: center;
}

.amaq-final-cta .amaq-container {
  padding-block: clamp(54px, 7vw, 76px);
}

.amaq-final-cta h2 {
  color: #ffffff;
  font-size: clamp(1.625rem, 3.2vw, 2.35rem);
  text-wrap: balance;
}

.amaq-final-cta p {
  margin-top: 11px;
  color: #d9eaef;
}

.amaq-footer {
  background: var(--amaq-navy-deep);
  color: #9bb7bf;
  font-size: 0.8125rem;
}

.amaq-footer__inner {
  display: flex;
  min-height: 104px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
  padding-block: 25px;
}

.amaq-footer__logo {
  color: #ffffff;
  font-size: 0.975rem;
}

.amaq-footer__logo svg {
  width: 25px;
  height: 25px;
}

.amaq-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.amaq-footer a {
  transition: color 160ms ease;
}

.amaq-footer a:hover,
.amaq-footer a:focus-visible {
  color: #ffffff;
}

.amaq-mobile-actions {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  border-top: 1px solid var(--amaq-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -8px 24px rgba(11, 59, 84, 0.12);
}

.amaq-mobile-actions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.amaq-mobile-actions .amaq-button {
  min-width: 0;
  padding-inline: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.amaq-content {
  min-height: 60vh;
}

.amaq-content__inner {
  max-width: 820px;
}

.amaq-entry h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.amaq-entry__content > * + * {
  margin-top: 1.1em;
}

.amaq-entry__content a {
  color: var(--amaq-aqua);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.amaq-site .is-animating {
  will-change: transform, opacity;
}

@media (max-width: 960px) {
  .amaq-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .amaq-nav__list {
    gap: 16px;
  }

  .amaq-hero__grid {
    min-height: 460px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 32px;
  }

  .amaq-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amaq-usp-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amaq-usp-strip__button {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 782px) {
  .admin-bar .amaq-header {
    top: 46px;
  }

  .amaq-header__inner {
    position: relative;
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .amaq-header__call {
    display: none;
  }

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

  /* Hide desktop nav on mobile */
  .amaq-nav--desktop {
    display: none;
  }

  /* Liquid menu toggle animation (hamburger → X) */
  .amaq-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .amaq-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .amaq-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* When liquid menu is active, flip toggle to white */
  .amaq-menu-toggle[aria-expanded="true"] {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    position: relative;
    z-index: 10000;
  }

  .amaq-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .amaq-hero__copy {
    max-width: 700px;
  }

  .amaq-hero__photo {
    width: min(100%, 620px);
    aspect-ratio: 16 / 10;
  }

  .amaq-usp-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amaq-usp-strip__button {
    grid-column: 1 / -1;
    width: min(100%, 300px);
  }
}

@media (max-width: 620px) {
  .amaq-theme {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .amaq-container {
    width: min(100% - 32px, var(--amaq-max-width));
  }

  .amaq-mobile-actions {
    display: block;
  }

  .amaq-topbar__area {
    display: none;
  }

  .amaq-topbar__inner {
    justify-content: center;
  }

  .amaq-logo__text {
    font-size: 1rem;
  }

  .amaq-logo__mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .amaq-logo__image {
    max-width: 185px;
    height: 38px;
  }

  .amaq-hero__grid {
    min-height: 0;
    gap: 28px;
    padding-block: 38px 42px;
  }

  .amaq-hero h1 {
    font-size: clamp(1.95rem, 9.5vw, 2.55rem);
  }

  .amaq-hero__summary {
    font-size: 0.975rem;
  }

  .amaq-button-row:not(.amaq-button-row--center) {
    flex-direction: column;
  }

  .amaq-button-row:not(.amaq-button-row--center) .amaq-button {
    width: 100%;
    white-space: normal;
  }

  .amaq-hero__photo {
    aspect-ratio: 4 / 3;
  }

  .amaq-section {
    padding-block: 55px;
    scroll-margin-top: 76px;
  }

  .amaq-section-heading {
    margin-bottom: 27px;
  }

  .amaq-service-grid,
  .amaq-usp-strip__grid {
    grid-template-columns: 1fr;
  }

  .amaq-service-card {
    padding: 24px 20px;
  }

  .amaq-usp-strip__grid {
    gap: 22px;
    padding-block: 29px;
  }

  .amaq-usp-strip__button {
    grid-column: auto;
    width: 100%;
  }

  .amaq-faq__question {
    font-size: 0.925rem;
  }

  .amaq-faq__answer p {
    padding-right: 22px;
  }

  .amaq-book-card {
    padding: 23px 18px;
  }

  .amaq-final-cta .amaq-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .amaq-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 30px;
  }
}

@media (max-width: 360px) {
  .amaq-container {
    width: min(100% - 24px, var(--amaq-max-width));
  }

  .amaq-logo__text {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amaq-mobile-actions__inner {
    gap: 7px;
    padding-inline: 9px;
  }

  .amaq-mobile-actions .amaq-button {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .amaq-site *,
  .amaq-site *::before,
  .amaq-site *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .amaq-liquid__wave { animation: none !important; }
  .amaq-bubble { animation: none !important; display: none; }
  .amaq-liquid__list a { transition: opacity 0.2s ease !important; transform: none !important; }
  .amaq-liquid.is-active .amaq-liquid__list a { opacity: 1; }
}
