:root {
  --client-blue: #0098d8;
  --client-cyan: #27c2d4;
  --client-deep: #003650;
  --client-ink: #073d58;
  --client-soft: #eaf7fb;
  --client-line: #d7ecf2;
  --client-paper: #fffdfa;
  --client-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --client-sans: "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  background: var(--client-paper);
  color: #132033;
  font-family: var(--client-sans);
}

.aa-wrap {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  align-items: center;
  background: rgba(237, 245, 248, .96);
  display: flex;
  justify-content: space-between;
  min-height: 4.1rem;
  padding: .65rem max(1.5rem, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: .55rem;
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.brand-word {
  color: #0d5c7d;
  display: inline;
  font-family: var(--client-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.brand-word strong {
  color: #24a9c3;
  display: inline;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: .18rem;
}

.footer-brand .brand-mark {
  height: 54px;
  width: 54px;
}

.footer-brand .brand-word {
  color: #fff;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.55rem;
}

.header-navigation {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.header-social,
.footer-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.header-social a {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  text-decoration: none;
  width: 24px;
}

.header-social a:hover,
.footer-social a:hover {
  color: var(--client-cyan);
}

.header-social img {
  display: block;
  height: 15px;
  opacity: .74;
  transition: opacity .18s ease, transform .18s ease;
  width: 15px;
}

.header-social a:hover img,
.header-social a:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav a {
  color: #225871;
  font-size: .83rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__trigger::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  content: "";
  display: inline-block;
  margin-left: .35rem;
  vertical-align: middle;
}

.site-nav__panel {
  background: #fff;
  border: 1px solid var(--client-line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 54, 80, .14);
  display: none;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  left: auto;
  min-width: 390px;
  padding: .6rem;
  position: absolute;
  right: 0;
  top: calc(100% + .35rem);
}

.site-nav__group {
  position: relative;
}

.site-nav__group:hover .site-nav__panel,
.site-nav__group:focus-within .site-nav__panel {
  display: grid;
  opacity: 1;
  transform: none;
}

.site-nav__panel a {
  border-radius: 5px;
  padding: .7rem;
  white-space: normal;
}

.site-nav__panel a:hover {
  background: var(--client-soft);
}

.button {
  border: 1px solid currentColor;
  border-radius: 8px;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 700;
  justify-content: center;
  min-width: 10rem;
  padding: .82rem 1.25rem;
  text-decoration: none;
}

.button.primary {
  background: var(--client-blue);
  border-color: var(--client-blue);
  color: #fff;
}

.button.secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.button.light {
  background: #fff;
  border-color: #fff;
  color: #086783;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.eyebrow {
  color: #20b7cc;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin: 0 0 .6rem;
  text-transform: uppercase;
}

.aa-home-hero--client {
  background:
    linear-gradient(180deg, rgba(0,38,58,.42) 0%, rgba(0,47,67,.66) 58%, rgba(0,47,67,.28) 82%, rgba(255,255,255,.96) 100%),
    url("assets/images/home/home-hero-client.png") center / cover no-repeat;
  color: #fff;
  min-height: 34rem;
  padding: 6.6rem 0 8rem;
}

.aa-pill {
  background: rgba(0,88,121,.72);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 800;
  margin: 0 0 1.8rem;
  padding: .35rem .8rem;
}

.aa-home-hero h1,
.release-band h2,
.article-layout h2,
.home-close h2,
.aa-sales-hero h1,
.stage-section h2,
.included-section h2,
.author-section h2,
.sales-close h2 {
  font-family: var(--client-serif);
  letter-spacing: 0;
}

.aa-home-hero h1 {
  color: #fff;
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: .95;
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.aa-home-hero p:not(.aa-pill) {
  font-size: 1.28rem;
  max-width: 47rem;
}

.release-band {
  background: linear-gradient(90deg, #008dca, var(--client-cyan));
  color: #fff;
  padding: 2.2rem 0;
}

.release-band__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.release-band__crest {
  flex: 0 0 auto;
  height: 76px;
  object-fit: contain;
  width: 76px;
}

.release-band__crest + div {
  flex: 1;
}

.release-band .eyebrow,
.release-band h2 {
  color: #fff;
}

.release-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
  margin: 0;
}

.release-band p {
  margin: .25rem 0 0;
}

.chillie-note {
  background: #edf8fb;
  padding: 3.2rem 0;
}

.chillie-note__inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 92px 1fr;
  max-width: 900px;
}

.chillie-note img {
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  width: 74px;
}

.chillie-note blockquote {
  margin: 0;
}

.chillie-note p {
  color: #174b62;
  font-family: var(--client-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.chillie-note cite {
  color: #57a9bb;
  display: block;
  font-size: .88rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 1rem;
}

.quick-link-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}

.quick-link-card {
  aspect-ratio: 3.1 / 1;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  color: #fff;
  display: flex;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.quick-link-card::after {
  background: linear-gradient(180deg, transparent, rgba(0,38,58,.68));
  content: "";
  inset: 0;
  position: absolute;
}

.quick-link-card span {
  align-self: end;
  font-family: var(--client-serif);
  font-size: 1rem;
  letter-spacing: .14em;
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.quick-link-card small {
  display: block;
  font-family: var(--client-sans);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: .28rem;
  opacity: .82;
}

.article-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding-bottom: 6rem;
}

.section-heading-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.article-layout h2 {
  color: var(--client-ink);
  font-size: 2.2rem;
  line-height: 1;
  margin: 0;
}

.article-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card {
  background: #fff;
  border: 1px solid var(--client-line);
  border-radius: 10px;
  overflow: hidden;
}

.article-card a {
  display: block;
  text-decoration: none;
}

.article-thumb {
  aspect-ratio: 1.55 / 1;
  background: #dff5fa center / cover no-repeat;
  display: block;
}

.article-card strong {
  color: var(--client-ink);
  display: block;
  font-family: var(--client-serif);
  font-size: 1.2rem;
  line-height: 1.15;
  padding: 1rem 1rem .2rem;
}

.article-card time {
  color: #29a9bd;
  display: block;
  font-size: .82rem;
  font-weight: 800;
  padding: 0 1rem 1rem;
}

.home-article-pagination {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 2rem;
}

.home-article-pagination > :last-child {
  justify-self: end;
}

.home-article-pagination a {
  border: 1px solid #31a8bc;
  border-radius: 999px;
  color: #147e96;
  font-size: .82rem;
  font-weight: 850;
  padding: .65rem .9rem;
  text-decoration: none;
}

.home-article-pagination span {
  color: #62828d;
  font-size: .78rem;
  font-weight: 800;
}

.text-link {
  color: #178aa5;
  font-weight: 800;
  text-decoration: none;
}

.guide-mini-card {
  background: #fff;
  border: 1px solid var(--client-line);
  border-radius: 10px;
  box-shadow: none;
  padding: 1.2rem;
}

.guide-mini-card h3,
.sidebar-list h3 {
  color: var(--client-ink);
  font-family: var(--client-serif);
  line-height: 1;
  margin: 0 0 .8rem;
}

.guide-mini-card .button {
  min-width: 100%;
}

.guide-mini-card__crest {
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.sidebar-list {
  padding: 1.5rem 0 0;
}

.sidebar-list a {
  background: #eaf8fb;
  border-radius: 999px;
  color: #23869a;
  display: inline-block;
  font-size: .82rem;
  font-weight: 800;
  margin: .25rem;
  padding: .35rem .65rem;
  text-decoration: none;
}

.sidebar-list--plain a {
  background: transparent;
  display: block;
  margin: 0 0 .45rem;
  padding: 0;
}

.home-sidebar > .widget_archive,
.home-sidebar > .widget_categories {
  display: none;
}

.blog-fallback__grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-fallback__hero {
  background:
    linear-gradient(90deg,rgba(3,31,49,.97),rgba(4,51,69,.84) 58%,rgba(4,39,57,.72)),
    url("assets/images/field-guide/ch09-opener.jpg") center 58%/cover no-repeat;
  display: block;
  margin-bottom: 3.25rem;
  padding: clamp(3.25rem,6vw,5.25rem) 1.5rem;
}

.blog-fallback__hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem,5vw,4rem);
  grid-template-columns: 150px minmax(0,760px);
}

.blog-fallback__crest {
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.38));
  height: 150px;
  object-fit: contain;
  width: 150px;
}

.blog-fallback__hero h1 {
  color: #fff;
  font-size: clamp(3rem,5.5vw,5.2rem);
  line-height: .92;
  margin: .35rem 0 1rem;
  max-width: 13ch;
}

.blog-fallback__hero p:not(.eyebrow) {
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  max-width: 43rem;
}

.blog-fallback__topics {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}

.blog-fallback__topics a {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(238,198,105,.55);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  padding: .5rem .8rem;
  text-decoration: none;
}

.blog-fallback__card {
  display: flex;
  flex-direction: column;
}

.blog-fallback__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-fallback__copy .entry-content {
  display: -webkit-box;
  line-clamp: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.blog-fallback__copy .entry-content p {
  margin-bottom: 0;
}

.blog-fallback__pagination {
  margin-top: 2.5rem;
}

.home-close {
  background: #e8f7fb;
  padding: 6rem 0;
  text-align: center;
}

.home-close h2 {
  color: var(--client-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

.home-close p {
  color: #4f94a5;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

.home-close .actions {
  justify-content: center;
}

.home-close .button.secondary {
  border-color: #34a9c0;
  color: #167d96;
}

.aa-sales-hero {
  background:
    radial-gradient(circle at 72% 40%, rgba(12,143,172,.42), transparent 34rem),
    linear-gradient(180deg, #003b59 0%, #002f49 82%, rgba(255,255,255,.9) 100%);
  color: #fff;
  min-height: auto;
  padding: 5rem 0 6rem;
}

.aa-sales-hero__inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0,1.05fr) minmax(280px,.75fr);
}

.aa-sales-hero h1 {
  color: #fff;
  font-size: clamp(3rem,4.8vw,4.6rem);
  line-height: .95;
  margin: 0;
  max-width: 10ch;
}

.aa-sales-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
  max-width: 31rem;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.hero-checks li {
  color: #8ddde0;
  font-size: .86rem;
  font-weight: 800;
}

.book-cover {
  aspect-ratio: .684;
  filter: drop-shadow(0 36px 55px rgba(0,0,0,.38));
  margin: 0 auto;
  max-width: 360px;
  position: relative;
  width: 100%;
}

.book-cover img {
  border-radius: 10px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.book-cover__crest {
  bottom: 1.15rem;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.4));
  height: 100px !important;
  left: 50%;
  object-fit: contain !important;
  position: absolute;
  transform: translateX(-50%);
  width: 100px !important;
  z-index: 2;
}

.stage-section,
.included-section {
  background: var(--client-paper);
  padding-bottom: 4rem;
  padding-top: 6.5rem;
  text-align: center;
}

.stage-section h2,
.included-section h2 {
  color: var(--client-ink);
  font-size: clamp(2.3rem,4vw,4rem);
  line-height: .95;
  margin: 0 auto;
  max-width: 14ch;
}

.section-intro {
  color: #67a8b8;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.stage-grid {
  display: grid;
  gap: 2rem 4rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin-top: 4rem;
  text-align: left;
}

.stage-grid article {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 3rem 1fr;
}

.stage-grid span {
  color: #20aeca;
  font-family: var(--client-serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.stage-grid h3,
.included-grid h3 {
  color: var(--client-ink);
  font-family: var(--client-serif);
  margin: 0 0 .25rem;
}

.stage-grid p,
.included-grid p {
  color: #67a8b8;
}

.included-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 3rem;
  text-align: left;
}

.included-grid article {
  background: #fff;
  border: 1px solid var(--client-line);
  border-radius: 10px;
  padding: 1.35rem;
}

.included-grid span {
  align-items: center;
  background: #eaf8fb;
  border-radius: 8px;
  color: #20aeca;
  display: inline-flex;
  height: 2.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 2.2rem;
}

.author-section {
  align-items: center;
  background: linear-gradient(135deg,rgba(5,35,54,.98),rgba(5,73,86,.96)),url("assets/images/field-guide/ch09-opener.jpg") center/cover no-repeat;
  border: 1px solid rgba(213,163,61,.5);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,35,55,.2);
  color: #fff;
  display: grid;
  gap: clamp(2rem,5vw,4rem);
  grid-template-columns: minmax(190px,240px) minmax(0,1fr);
  margin: 2rem auto 6rem;
  max-width: 1120px;
  overflow: hidden;
  padding: clamp(2.25rem,5vw,4rem);
  position: relative;
  text-align: left;
}

.author-section::before {
  background: radial-gradient(circle at 12% 18%,rgba(220,168,62,.3),transparent 17rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.author-seal {
  align-items: center;
  background: radial-gradient(circle at 34% 28%,#ffe7a0,#d5a33d 52%,#93651d 100%);
  border: 3px double rgba(255,244,195,.9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,.3),inset 0 0 0 5px rgba(113,73,16,.25);
  color: #064766;
  display: flex;
  height: 74px;
  justify-content: center;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transform: rotate(8deg);
  width: 74px;
  z-index: 2;
}

.author-seal span {
  font-size: 2rem;
}

.author-section__portrait {
  margin: 0;
  position: relative;
  width: min(240px,100%);
  z-index: 1;
}

.author-section__portrait img {
  aspect-ratio: 1/1;
  border: 2px solid rgba(238,197,103,.8);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0,0,0,.35);
  object-fit: cover;
  width: 100%;
}

.author-section__copy {
  padding-right: 5rem;
  position: relative;
  z-index: 1;
}

.author-section .eyebrow {
  color: #efc669;
}

.author-section h2 {
  color: #fff;
  font-size: clamp(2.5rem,3.5vw,3.65rem);
  line-height: .95;
  margin: 0;
  max-width: none;
}

.author-section p:not(.eyebrow) {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  max-width: 46rem;
}

.author-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0 0;
}

.author-stats div {
  background: linear-gradient(145deg,rgba(255,239,187,.98),rgba(204,147,42,.96));
  border: 1px solid #f5d780;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8),0 8px 18px rgba(0,0,0,.2);
  min-width: 128px;
  padding: .55rem 1rem .5rem;
}

.author-stats dt {
  color: #083e59;
  font-family: var(--client-serif);
  font-size: 1.4rem;
  font-weight: 800;
}

.author-stats dd {
  color: #6d4a13;
  font-size: .72rem;
  font-weight: 900;
  margin: .2rem 0 0;
  text-transform: uppercase;
}

.sales-close {
  background: linear-gradient(90deg,#008dca,#0078a8);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.sales-close h2 {
  color: #fff;
  font-size: clamp(2rem,4vw,3.3rem);
  line-height: 1;
  margin: 0;
}

.sales-close__crest {
  filter: drop-shadow(0 12px 20px rgba(0,41,61,.28));
  height: 88px;
  margin: 0 auto 1rem;
  object-fit: contain;
  width: 88px;
}

.sales-close p {
  color: rgba(255,255,255,.72);
}

.site-footer {
  background: var(--client-deep);
  color: rgba(255,255,255,.7);
  display: grid;
  gap: 2.5rem 4rem;
  grid-template-columns: minmax(280px,1.45fr) repeat(3,minmax(130px,.55fr));
  margin-top: 0;
  max-width: none;
  padding: 4.5rem max(1.5rem,calc((100vw - 1120px) / 2)) 1.5rem;
}

.site-footer .brand-word,
.site-footer .brand-word strong,
.site-footer a {
  color: rgba(255,255,255,.78);
}

.site-footer nav {
  align-items: start;
  display: grid;
  gap: .72rem;
  justify-content: start;
}

.site-footer nav h2 {
  color: #fff;
  font-family: var(--client-sans);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin: .35rem 0 .45rem;
  text-transform: uppercase;
}

.site-footer nav a {
  font-size: .84rem;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
}

.site-footer__intro p {
  font-size: .9rem;
  line-height: 1.75;
  margin: 1.25rem 0 0;
  max-width: 430px;
}

.site-footer .footer-social a {
  align-items: center;
  display: flex;
  gap: .55rem;
}

.site-footer .footer-social img {
  filter: brightness(0) invert(1);
  height: 14px;
  opacity: .72;
  width: 14px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  font-size: .7rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: .03em;
  padding-top: 1.25rem;
}

.trip-calendar__hero {
  background:
    linear-gradient(90deg, rgba(0,31,51,.96), rgba(0,54,80,.78)),
    url("assets/images/home/chillies-cruises.jpg") center 58% / cover;
  color: #fff;
  padding: 5.5rem 0;
}

.trip-calendar__hero-inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0,1fr) 150px;
}

.trip-calendar__hero h1 {
  color: #fff;
  font-family: var(--client-serif);
  font-size: clamp(3.2rem,7vw,5.8rem);
  line-height: .96;
  margin: .5rem 0 1rem;
  max-width: 780px;
}

.trip-calendar__hero p:last-child {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 650px;
}

.trip-calendar__hero img {
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.34));
  height: 150px;
  object-fit: contain;
  width: 150px;
}

.trip-calendar__layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0,1.6fr) minmax(280px,.7fr);
  padding-bottom: 6rem;
  padding-top: 5rem;
}

.trip-calendar__schedule h2,
.trip-calendar__aside h2 {
  color: var(--client-deep);
  font-family: var(--client-serif);
  font-size: 2.25rem;
  margin: .45rem 0 1.5rem;
}

.trip-calendar__content > p:first-child {
  color: #4e7282;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.trip-calendar__content > p:not(:first-child) {
  background: #fff;
  border: 1px solid var(--client-line);
  border-left: 6px solid var(--client-cyan);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0,54,80,.08);
  color: #254758;
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 1rem 0;
  padding: 1.5rem 1.65rem;
}

.trip-calendar__aside {
  align-self: start;
  background: var(--client-deep);
  border-top: 6px solid #dca12e;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  padding: 2rem;
  position: sticky;
  top: 7.5rem;
}

.trip-calendar__aside h2 {
  color: #fff;
}

.trip-calendar__aside .button {
  margin-top: 1rem;
  width: 100%;
}

.guide-shop__hero {
  background:
    linear-gradient(90deg, rgba(0,31,51,.97), rgba(0,54,80,.78)),
    url("assets/images/home/home-hero-client.png") center 54% / cover;
  color: #fff;
  padding: 5.5rem 0;
}

.guide-shop__hero h1 {
  color: #fff;
  font-family: var(--client-serif);
  font-size: clamp(3.2rem,6vw,5.4rem);
  line-height: .98;
  margin: .55rem 0 1rem;
  max-width: 850px;
}

.guide-shop__hero p:last-child {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 680px;
}

.guide-shop__product {
  align-items: center;
  display: grid;
  gap: clamp(3rem,7vw,7rem);
  grid-template-columns: minmax(260px,390px) minmax(0,1fr);
  padding-bottom: 6.5rem;
  padding-top: 6.5rem;
}

.guide-shop__cover {
  filter: drop-shadow(0 30px 42px rgba(0,31,51,.25));
  margin: 0;
}

.guide-shop__cover img {
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.guide-shop__copy h2 {
  color: var(--client-deep);
  font-family: var(--client-serif);
  font-size: clamp(2.65rem,5vw,4.3rem);
  line-height: .98;
  margin: .55rem 0 1.2rem;
}

.guide-shop__copy > p {
  color: #446373;
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 640px;
}

.guide-shop__price {
  color: var(--client-deep) !important;
  font-family: var(--client-serif);
  font-size: 2rem !important;
  font-weight: 800;
}

.guide-shop__price span {
  color: #5f7c89;
  font-family: var(--client-sans);
  font-size: .82rem;
  font-weight: 700;
  margin-left: .4rem;
}

.guide-shop__copy ul {
  display: grid;
  gap: .7rem;
  list-style: none;
  margin: 1.6rem 0;
  padding: 0;
}

.guide-shop__copy li {
  color: #244b5d;
  font-weight: 700;
  padding-left: 1.7rem;
  position: relative;
}

.guide-shop__copy li::before {
  color: #bd8625;
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.button.shop-secondary {
  background: transparent;
  border-color: #5b7a88;
  color: var(--client-deep);
}

.guide-shop__copy .button.primary {
  background: var(--client-blue);
  border-color: var(--client-blue);
  color: #fff;
}

.guide-shop__copy .button.shop-secondary {
  background: #fff;
  border-color: #78909a;
  color: var(--client-deep);
}

.agent-ready {
  background: var(--client-deep);
  color: rgba(255,255,255,.76);
  padding: 6.5rem 0;
}

.agent-ready__heading {
  display: grid;
  gap: 2rem 5rem;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.8fr);
}

.agent-ready__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.25rem;
}

.agent-ready__heading h2 {
  color: #fff;
  font-family: var(--client-serif);
  font-size: clamp(2.8rem,5.5vw,4.9rem);
  line-height: .98;
  margin: 0;
}

.agent-ready__heading > p:last-child {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.agent-ready__steps {
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 4rem;
}

.agent-ready__steps article {
  padding: 2.5rem 2.25rem;
}

.agent-ready__steps article + article {
  border-left: 1px solid rgba(255,255,255,.15);
}

.agent-ready__steps span {
  color: #e0aa3a;
  display: block;
  font-family: var(--client-serif);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.agent-ready__steps h3 {
  color: #fff;
  font-family: var(--client-serif);
  font-size: 1.55rem;
  margin: 0 0 .75rem;
}

.agent-ready__steps p {
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

.agent-ready__output {
  align-items: center;
  background: #086d89;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0,1fr) auto;
  margin-top: 3rem;
  padding: 2rem 2.25rem;
}

.agent-ready__output p {
  line-height: 1.65;
  margin: 0;
}

.agent-ready__output .eyebrow {
  color: #9feaf0;
  margin-bottom: .5rem;
}

.guide-faq {
  padding-bottom: 6.5rem;
  padding-top: 6.5rem;
}

.guide-faq > h2 {
  color: var(--client-deep);
  font-family: var(--client-serif);
  font-size: clamp(2.8rem,5vw,4.4rem);
  margin: .5rem 0 2.5rem;
}

.guide-faq__grid {
  border-top: 1px solid var(--client-line);
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.guide-faq details {
  border-bottom: 1px solid var(--client-line);
  padding: 1.4rem 1.5rem 1.4rem 0;
}

.guide-faq details:nth-child(odd) {
  border-right: 1px solid var(--client-line);
  padding-right: 2rem;
}

.guide-faq details:nth-child(even) {
  padding-left: 2rem;
}

.guide-faq summary {
  color: var(--client-deep);
  cursor: pointer;
  font-family: var(--client-serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.guide-faq details p {
  color: #526e7b;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    display: grid;
    gap: .7rem;
    position: relative;
  }

  .site-nav {
    gap: .8rem 1rem;
  }

  .header-navigation {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav__panel {
    left: 0;
    min-width: min(360px,calc(100vw - 2rem));
    right: auto;
  }

  .aa-home-hero--client {
    min-height: 36rem;
    padding: 4.8rem 0 6rem;
  }

  .aa-home-hero h1 {
    white-space: normal;
  }

  .release-band__inner,
  .aa-sales-hero__inner,
  .article-layout,
  .author-section,
  .trip-calendar__hero-inner,
  .trip-calendar__layout,
  .guide-shop__product,
  .agent-ready__heading,
  .agent-ready__output,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .agent-ready__steps,
  .guide-faq__grid {
    grid-template-columns: 1fr;
  }

  .agent-ready__steps article + article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .guide-faq details,
  .guide-faq details:nth-child(odd),
  .guide-faq details:nth-child(even) {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .4rem;
  }

  .trip-calendar__hero img {
    height: 104px;
    width: 104px;
  }

  .trip-calendar__aside {
    position: static;
  }

  .release-band__inner {
    align-items: start;
    display: grid;
  }

  .author-section {
    padding-top: 5.5rem;
  }

  .author-section__copy {
    padding-right: 0;
  }

  .author-seal {
    height: 62px;
    right: 1.25rem;
    top: 1.25rem;
    width: 62px;
  }

  .quick-link-grid,
  .included-grid,
  .article-card-grid,
  .stage-grid,
  .blog-fallback__grid {
    grid-template-columns: 1fr;
  }

  .blog-fallback__hero-inner {
    grid-template-columns: 1fr;
  }

  .home-article-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .home-article-pagination > span {
    grid-column: 1/-1;
    grid-row: 1;
    justify-self: center;
  }

  .blog-fallback__crest {
    height: 104px;
    width: 104px;
  }

  .chillie-note__inner {
    grid-template-columns: 1fr;
  }

  .quick-link-card {
    aspect-ratio: 2.2 / 1;
  }

  .book-cover {
    max-width: 300px;
  }
}

/* ---------------------------------------------------------------
   WCAG 2.2 AA text contrast fixes
   The brand cyan (#20b7cc / #29a9bd) reaches only 2.4-2.8:1 on the
   page background, well under the 4.5:1 required for body text.
   These keep the same hue at a passing luminance. Decorative uses of
   --aa-cyan (gradients, rules) are deliberately left alone.
   --------------------------------------------------------------- */
.eyebrow { color: #167f8e; }
.entry-meta,
.article-card time { color: #1f7f8f; }

/* ---------------------------------------------------------------
   Footer now carries a fourth column (Legal) plus the postal
   address, so give the columns room instead of wrapping them into
   the two-column grid.
   --------------------------------------------------------------- */
@media (min-width: 901px) {
  .site-footer {
    grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .site-footer {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  }
}
.site-footer nav h2 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 .2rem;
}
.site-footer__contact {
  font-style: normal;
  opacity: .85;
}
.site-footer__contact a { text-decoration: none; }
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible { text-decoration: underline; }

/* An AdSense slot Google did not fill still reserves its height and shows as a
   blank box in the sidebar. Collapse it. theme.js additionally hides the
   heading-only widget that would otherwise be left labelling nothing. */
ins.adsbygoogle[data-ad-status="unfilled"] { display: none !important; }

/* ---------------------------------------------------------------
   About Chillie (page-about-chillie.php)
   --------------------------------------------------------------- */

.about-hero {
  background: linear-gradient(180deg, var(--aa-soft), var(--aa-paper));
  padding: 4rem 0 3.5rem;
}
.about-hero__inner {
  align-items: center;
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.about-hero .entry-title {
  color: var(--aa-ink);
  font-family: var(--aa-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}
.about-hero__lede {
  color: #26465a;
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 1.8rem;
  max-width: 46ch;
}
.about-hero__portrait {
  margin: 0;
}
.about-hero__portrait img {
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 38, 58, .16);
  display: block;
  height: auto;
  object-fit: cover;
  object-position: 50% 38%;
  width: 100%;
}
.about-hero__portrait figcaption {
  color: #4e7a88;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding-top: .7rem;
  text-transform: uppercase;
}

.about-stats {
  background: var(--aa-deep);
  padding: 2.6rem 0;
}
.about-stats__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-stat strong {
  color: #fff;
  display: block;
  font-family: var(--aa-serif);
  font-size: 2.4rem;
  line-height: 1;
}
.about-stat span {
  color: rgba(255, 255, 255, .78);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
  margin-top: .5rem;
}

.about-story {
  padding: 4.5rem 0 1rem;
}
.about-story__shell {
  max-width: 720px;
}
.about-story .entry-content {
  font-size: 1.09rem;
  line-height: 1.78;
}
.about-story .entry-content > * + * { margin-top: 1.2em; }
.about-story .entry-content p:first-of-type {
  color: var(--aa-ink);
  font-family: var(--aa-serif);
  font-size: 1.32rem;
  line-height: 1.5;
}

.about-explore { padding-bottom: 1rem; }
.about-explore__grid { padding-top: 2rem; }
.about-explore__grid .quick-link-card span small {
  display: block;
  font-family: var(--aa-sans, inherit);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  opacity: .85;
  padding-bottom: .25rem;
}
/* The homepage grid nudges the focal point of its three cards individually;
   these are different images, so keep them centred. */
.about-explore__grid .quick-link-card:nth-child(n) { background-position: center; }

.about-contact {
  padding: 3.5rem 0 5.5rem;
}
.about-contact__inner {
  align-items: center;
  background: var(--aa-soft);
  border: 1px solid var(--aa-line);
  border-radius: 14px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 2.2rem 2.4rem;
}
.about-contact h2 {
  color: var(--aa-ink);
  font-family: var(--aa-serif);
  font-size: 1.7rem;
  margin: 0 0 .4rem;
}
.about-contact p {
  color: #26465a;
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero__portrait { order: -1; }
  .about-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-explore__grid { grid-template-columns: 1fr; }
  .about-contact__inner { grid-template-columns: 1fr; padding: 1.8rem; }
}
@media (max-width: 560px) {
  .about-stats__grid { grid-template-columns: 1fr; }
}

/* .button.secondary is built for the dark homepage hero (white text on a
   translucent white fill). The About hero is light, so give it a legible
   outline variant: #086783 clears AA on both ends of the hero gradient. */
.about-hero .button.secondary,
.about-contact .button.secondary {
  background: transparent;
  border-color: #086783;
  color: #086783;
}
.about-hero .button.secondary:hover,
.about-hero .button.secondary:focus-visible {
  background: #086783;
  color: #fff;
}
