.adc {
  --petrol: #103b46;
  --teal: #0f756d;
  --pearl: #f7fbfa;
  --blue: #dceff1;
  --coral: #ed6a4a;
  --ink: #182c33;
  --line: #bfd1d1;
  --muted: #4d666c;
  color: var(--ink);
  background: #fff;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.85;
  overflow: hidden;
}
.adc * {
  box-sizing: border-box;
}
.adc a {
  color: #09635e;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.adc a:focus-visible,
.adc button:focus-visible,
.adc input:focus-visible,
.adc summary:focus-visible,
.adc [tabindex="0"]:focus-visible {
  outline: 3px solid #f3a343;
  outline-offset: 3px;
}
.adc-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.adc-shell--narrow {
  max-width: 850px;
}
.adc h1,
.adc h2,
.adc h3,
.adc p {
  margin-top: 0;
}
.adc h1 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.adc h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.15rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.adc h3 {
  font-size: 1.2rem;
  line-height: 1.45;
}
.adc-hero {
  position: relative;
  background: linear-gradient(120deg, #0a3039 0%, #0f5a5b 70%, #148276 100%);
  color: #fff;
  padding: 54px 0 62px;
}
.adc-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    #fff 18px 30px
  );
}
.adc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 55px;
  align-items: center;
}
.adc-crumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  font-size: 0.85rem;
  color: #d7eeee;
}
.adc-crumbs a {
  color: #fff;
}
.adc-kicker,
.adc-eyebrow {
  margin: 0 0 8px;
  color: #137069;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.adc-hero .adc-kicker {
  color: #a7eee2 !important;
}
.adc-hero h1,
.adc-hero .adc-lead,
.adc-hero .adc-reviewed {
  color: #fff !important;
}
.adc-lead {
  font-size: 1.15rem;
  max-width: 760px;
  color: #edfafa;
}
.adc-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin: 27px 0 18px;
}
.adc-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 21px;
  border-radius: 3px;
  font-weight: 900;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
}
.adc-btn--coral {
  background: #ff835f;
  color: #19343a !important;
}
.adc-btn--line {
  border-color: #d8f1ec;
  color: #fff !important;
}
.adc-reviewed {
  font-size: 0.82rem;
  color: #d9ece9;
}
.adc-ticket {
  position: relative;
  background: #f8fcfa;
  color: var(--ink);
  padding: 26px 28px 24px;
  box-shadow: 0 18px 55px rgba(0, 22, 28, 0.32);
  transform: rotate(1deg);
}
.adc-ticket:before,
.adc-ticket:after {
  content: "";
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f5b5c;
}
.adc-ticket:before {
  top: 36%;
}
.adc-ticket:after {
  top: 68%;
}
.adc-ticket__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px dashed #a8bdbc;
  padding-bottom: 14px;
}
.adc-ticket__head span {
  font-family: ui-monospace, Consolas, monospace;
  color: #b54c31;
  font-weight: 900;
}
.adc-ticket__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px dashed #a8bdbc;
}
.adc-ticket__row > div {
  padding: 21px 12px;
}
.adc-ticket__row > div + div {
  border-right: 1px solid var(--line);
}
.adc-ticket small,
.adc-ticket span {
  display: block;
  color: #526a70;
}
.adc-ticket strong {
  display: block;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 1.8rem;
  color: #0c655e;
}
.adc-ticket dl {
  margin: 16px 0;
}
.adc-ticket dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
}
.adc-ticket dt {
  color: #61757a;
}
.adc-ticket dd {
  margin: 0;
  font-weight: 800;
}
.adc-ticket > p {
  font-size: 0.78rem;
  color: #536c71;
  margin-bottom: 0;
}
.adc-jump {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.adc-jump .adc-shell {
  display: flex;
  overflow-x: auto;
}
.adc-jump a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  padding: 16px 14px;
  white-space: nowrap;
}
.adc-jump a:hover {
  background: var(--blue);
}
.adc-section {
  padding: 82px 0;
}
.adc-section--blue {
  background: var(--blue);
}
.adc-section--pearl {
  background: var(--pearl);
}
.adc-section--ink {
  background: var(--petrol);
  color: #fff;
}
.adc-section--ink h2,
.adc-section--ink h3,
.adc-section--ink p,
.adc-section--ink li {
  color: #fff !important;
}
.adc-section--ink .adc-eyebrow {
  color: #9ee8dc !important;
}
.adc-intro {
  max-width: 780px;
}
.adc-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.adc-levels article {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  background: #fff;
}
.adc-levels__focus {
  background: #113f49 !important;
  color: #fff;
}
.adc-levels__focus h3,
.adc-levels__focus p {
  color: #fff !important;
}
.adc-levels span {
  display: inline-block;
  padding: 3px 9px;
  background: #dceeea;
  color: #0b574f;
  font-weight: 800;
  font-size: 0.78rem;
}
.adc-levels__focus span {
  background: #ff9a78;
  color: #293338;
}
.adc-levels h3 {
  margin-top: 14px;
}
.adc-family-band {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 25px 28px;
  background: #ecf6f2;
  border-right: 6px solid var(--coral);
}
.adc-family-band small,
.adc-family-band strong {
  display: block;
}
.adc-family-band strong {
  font:
    900 1.9rem ui-monospace,
    Consolas,
    monospace;
  color: #0a675e;
}
.adc-family-band p {
  margin-bottom: 0;
}
.adc-assumptions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 18px;
}
.adc-assumptions article {
  padding: 25px;
  background: #f7fcfb;
  border-top: 4px solid var(--teal);
}
.adc-assumptions b {
  font-size: 1.15rem;
}
.adc-assumptions ul {
  padding-right: 20px;
  margin-bottom: 0;
}
.adc-small {
  font-size: 0.82rem;
  color: #52676b;
}
.adc-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 24px;
  align-items: start;
}
.adc-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
}
.adc-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 26px;
}
.adc-form legend {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.adc-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.adc-fields--cost {
  grid-template-columns: repeat(4, 1fr);
}
.adc-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #28454c;
  font-size: 0.85rem;
  font-weight: 800;
}
.adc-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #8ca7a8;
  background: #fbfdfc;
  padding: 9px 11px;
  font:
    800 1rem ui-monospace,
    Consolas,
    monospace;
  color: #142d33;
}
.adc-form label small {
  color: #62787b;
  font-weight: 400;
}
.adc-presets {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.adc-presets button {
  min-height: 46px;
  border: 1px solid #0e6961;
  background: #e5f3ef;
  color: #17443f;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
}
.adc-presets button:last-child {
  background: #fff;
}
.adc-receipt {
  display: block;
  position: sticky;
  top: 20px;
  background: #123c46;
  color: #fff;
  padding: 26px 27px 34px;
  box-shadow: 0 15px 35px rgba(20, 53, 58, 0.15);
}
.adc-receipt:after {
  content: "";
  position: absolute;
  inset: auto 0 -10px;
  height: 20px;
  background: linear-gradient(135deg, #123c46 10px, transparent 0) 0 0/20px 20px
    repeat-x;
}
.adc-receipt__stamp {
  display: inline-block;
  border: 2px solid #ff9b79;
  color: #ffb39c;
  padding: 2px 9px;
  transform: rotate(-2deg);
  font-weight: 900;
  font-size: 0.78rem;
}
.adc-receipt h3 {
  color: #fff !important;
  margin: 20px 0 12px;
}
.adc-receipt dl {
  margin: 0;
}
.adc-receipt dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px dashed #52717a;
}
.adc-receipt dt {
  color: #d9e8e7;
}
.adc-receipt dd {
  margin: 0;
  font-family: ui-monospace, Consolas, monospace;
  color: #fff;
}
.adc-total {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 2px solid #fff;
}
.adc-total span,
.adc-total small {
  display: block;
}
.adc-total strong {
  display: block;
  font:
    900 2.35rem ui-monospace,
    Consolas,
    monospace;
  color: #ffb28f;
}
.adc-receipt > p {
  color: #d8e6e6 !important;
  font-size: 0.78rem;
  margin: 15px 0 0;
}
.adc-ledgers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adc-ledgers article {
  border: 1px solid var(--line);
}
.adc-ledgers header {
  padding: 24px;
  background: #e3f2ef;
}
.adc-ledgers header span {
  font-size: 0.78rem;
  font-weight: 900;
  color: #9a462f;
}
.adc-ledgers header strong {
  font:
    900 1.35rem ui-monospace,
    Consolas,
    monospace;
  color: #0a625a;
}
.adc-table-wrap {
  overflow-x: auto;
}
.adc table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
  text-align: right;
}
.adc caption {
  text-align: right;
  padding: 13px 16px;
  background: #f8fbfa;
  color: #496166;
  font-size: 0.8rem;
}
.adc th,
.adc td {
  padding: 11px 13px;
  border-bottom: 1px solid #d3dfdd;
}
.adc thead th {
  background: #123e47;
  color: #fff;
}
.adc tbody th {
  color: #0d645c;
}
.adc-disclaimer {
  font-size: 0.82rem;
  color: #526a70;
  margin-top: 18px;
}
.adc-flight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.adc-flight-grid article {
  padding: 25px;
  background: #164a55;
  border-top: 4px solid #ff865f;
}
.adc-flight-grid span {
  font:
    800 0.8rem ui-monospace,
    Consolas,
    monospace;
  color: #aeece2;
}
.adc-flight-grid strong {
  display: block;
  font:
    900 1.6rem ui-monospace,
    Consolas,
    monospace;
  color: #ffb18f;
  margin-bottom: 10px;
}
.adc-note {
  margin-top: 24px;
  padding: 23px 27px;
  background: #0b2f38;
  border-right: 5px solid var(--coral);
  color: #fff;
}
.adc-note b {
  color: #ffc0a8;
}
.adc-note--light {
  background: #e8f4f1;
  color: #244348;
}
.adc-note--light b {
  color: #9b4029;
}
.adc-hotel-grid,
.adc-daily-grid,
.adc-season {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.adc-hotel-grid article,
.adc-daily-grid article,
.adc-season article {
  padding: 26px;
  border-top: 4px solid var(--coral);
  background: #fff;
  border-left: 1px solid #d3dfdd;
  border-right: 1px solid #d3dfdd;
  border-bottom: 1px solid #d3dfdd;
}
.adc-hotel-grid strong {
  font:
    900 1.3rem ui-monospace,
    Consolas,
    monospace;
  color: #0a655d;
}
.adc-area-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border: 1px solid var(--line);
}
.adc-area-ledger > div {
  padding: 21px;
}
.adc-area-ledger > div + div {
  border-right: 1px solid var(--line);
}
.adc-area-ledger span {
  font-weight: 900;
  color: #0c655d;
}
.adc-area-ledger p {
  margin: 7px 0 0;
}
.adc-callout {
  padding: 20px;
  margin-top: 20px;
  border: 1px dashed var(--teal);
}
.adc-daily-grid header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.adc-daily-grid header span {
  font:
    900 0.8rem ui-monospace,
    Consolas,
    monospace;
  color: #bc4c31;
}
.adc-daily-grid ul {
  padding-right: 20px;
}
.adc-free {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 20px;
  background: #dcefeb;
  padding: 23px;
}
.adc-free p {
  margin: 0;
}
.adc-season article b {
  color: #a8432b;
}
.adc-savings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #96b8b8;
}
.adc-savings li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 22px;
  background: #f8fcfb;
}
.adc-savings b {
  color: #0b655d;
}
.adc-forgotten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.adc-forgotten article {
  padding: 25px;
  border: 1px solid var(--line);
}
.adc-forgotten ul {
  padding-right: 20px;
}
.adc-faqs details {
  border-bottom: 1px solid var(--line);
}
.adc-faqs summary {
  padding: 20px 4px;
  font-weight: 900;
  cursor: pointer;
}
.adc-faqs p {
  padding: 0 4px 18px;
  color: #405d63;
}
.adc-sources {
  background: #eef3f1;
}
.adc-sources ul {
  padding-right: 20px;
}
.adc-sources li {
  margin-bottom: 7px;
}
.adc-source-note {
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.adc-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.adc-cases article {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
}
.adc-cases header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.adc-cases header span {
  background: var(--coral);
  color: #fff;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 900;
}
.adc-reconcile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
  background: var(--blue);
  padding: 25px;
}
.adc-reconcile ol,
.adc-reconcile ul {
  padding-right: 20px;
}
.adc-cta {
  padding: 68px 0;
  background: linear-gradient(120deg, #c64e30, #e8724f);
  color: #fff;
}
.adc-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.adc-cta h2,
.adc-cta p {
  color: #fff !important;
}
.adc-cta__grid > div:last-child {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  align-items: center;
}
.adc-btn--white {
  background: #fff;
  color: #173b43 !important;
}
.adc-btn--line-white {
  border-color: #fff;
  color: #fff !important;
}
.adc-text-link {
  color: #fff !important;
  font-weight: 800;
  padding: 10px;
}
@media (max-width: 920px) {
  .adc-hero__grid,
  .adc-calc {
    grid-template-columns: 1fr;
  }
  .adc-ticket {
    transform: none;
  }
  .adc-receipt {
    position: relative;
    top: auto;
  }
  .adc-fields,
  .adc-fields--cost {
    grid-template-columns: repeat(2, 1fr);
  }
  .adc-levels,
  .adc-assumptions,
  .adc-flight-grid,
  .adc-hotel-grid,
  .adc-daily-grid,
  .adc-season,
  .adc-forgotten {
    grid-template-columns: 1fr 1fr;
  }
  .adc-family-band {
    grid-template-columns: 1fr;
  }
  .adc-ledgers {
    grid-template-columns: 1fr;
  }
  .adc-cta__grid {
    grid-template-columns: 1fr;
  }
  .adc-cases {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .adc-shell {
    width: min(100% - 28px, 1160px);
  }
  .adc-hero {
    padding-top: 34px;
  }
  .adc h1 {
    font-size: 2.35rem;
  }
  .adc-section {
    padding: 58px 0;
  }
  .adc-levels,
  .adc-assumptions,
  .adc-flight-grid,
  .adc-hotel-grid,
  .adc-daily-grid,
  .adc-season,
  .adc-forgotten,
  .adc-area-ledger {
    grid-template-columns: 1fr;
  }
  .adc-fields,
  .adc-fields--cost {
    grid-template-columns: 1fr 1fr;
  }
  .adc-ticket__row {
    grid-template-columns: 1fr;
  }
  .adc-ticket__row > div + div {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .adc-area-ledger > div + div {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .adc-free {
    grid-template-columns: 1fr;
  }
  .adc-savings {
    grid-template-columns: 1fr;
  }
  .adc-savings li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .adc-btn {
    width: 100%;
  }
  .adc-cta__grid > div:last-child {
    display: grid;
  }
  .adc-total strong {
    font-size: 2rem;
  }
  .adc-cases,
  .adc-reconcile {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .adc * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
