/* Shared theme tokens keep every campaign aligned with the institutional website. */
  .atl-lp {
    --atl-forest: var(--louise-forest);
    --atl-forest-deep: var(--louise-forest-deep);
    --atl-gold: var(--louise-gold);
    --atl-ivory: var(--louise-ivory);
    --atl-paper: var(--louise-paper);
    --atl-ink: var(--louise-ink);
    --atl-muted: var(--louise-muted);
    --atl-line: var(--louise-line);
    --atl-display: var(--louise-display);
    --atl-body: var(--louise-body);
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--atl-paper);
    color: var(--atl-ink);
    font: 400 17px/1.5 var(--atl-body);
    -webkit-font-smoothing: antialiased;
  }
  .atl-lp *, .atl-lp *::before, .atl-lp *::after { box-sizing: border-box; }
  .atl-lp img { display: block; max-width: 100%; }
  .atl-lp h1, .atl-lp p, .atl-lp figure { margin: 0; }
  .atl-lp a { color: inherit; text-decoration: none; }
  .atl-lp button { font: inherit; cursor: pointer; border-radius: 0; }
  .atl-lp [hidden] { display: none !important; }
  .atl-lp ::selection { background: var(--atl-forest); color: var(--atl-paper); }
  .atl-lp :focus-visible { outline: 2px solid var(--atl-gold); outline-offset: 4px; }
  .atl-lp__header {
    position: relative;
    min-height: 88px;
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .atl-lp__brand { display: flex; align-items: center; gap: 16px; }
  .atl-lp .atl-lp__logo { width: auto; height: 64px; object-fit: contain; }
  /* Center the name independently of the unequal logo and city widths. */
  .atl-lp__brand-name {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font: 500 24px/1.1 var(--atl-display);
    letter-spacing: 0.025em;
  }
  .atl-lp__city { color: var(--atl-muted); font-size: 14px; }
  .atl-lp__experience {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    background: var(--atl-ivory);
  }
  .atl-lp__carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--atl-forest-deep);
    touch-action: pan-y;
  }
  .atl-lp__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 200ms ease-out; }
  .atl-lp__slide.is-active { opacity: 1; }
  .atl-lp__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .atl-lp__controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    gap: 8px;
  }
  .atl-lp__control, .atl-lp__counter {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 253, 248, 0.55);
    background: var(--atl-forest-deep);
    color: var(--atl-paper);
    font-size: 14px;
    line-height: 1;
    pointer-events: auto;
  }
  .atl-lp__control:hover { background: var(--atl-forest); }
  .atl-lp .atl-lp__control { font-size: 14px; line-height: 1.2; white-space: nowrap; flex-shrink: 0; }
  .atl-lp__control:focus-visible { outline-color: var(--atl-paper); }
  .atl-lp__control svg { width: 18px; height: 18px; }
  .atl-lp__paging { display: flex; gap: 4px; }
  .atl-lp__counter { min-width: 54px; border: 0; font-variant-numeric: tabular-nums; }
  .atl-lp__copy {
    align-self: center;
    width: 100%;
    max-width: 650px;
    padding: 64px clamp(32px, 5vw, 80px);
  }
  .atl-lp h1 {
    max-width: 16ch;
    color: var(--atl-ink);
    font: 400 clamp(40px, 4.7vw, 68px)/1.08 var(--atl-display);
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  .atl-lp__text { max-width: 38ch; margin-top: 24px !important; color: #4f534c; }
  .atl-lp__actions { display: grid; grid-template-columns: 1.08fr 1fr; gap: 12px; margin-top: 32px; }
  .atl-lp__action {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--atl-forest);
    background: var(--atl-forest);
    color: var(--atl-paper) !important;
    font: 600 16px/1.2 var(--atl-body);
    text-align: center;
    transition: background-color 160ms ease, color 160ms ease;
  }
  .atl-lp__action svg { width: 20px; height: 20px; flex-shrink: 0; }
  .atl-lp__action:hover { background: var(--atl-forest-deep); }
  .atl-lp__action--secondary { background: transparent; color: var(--atl-forest) !important; }
  .atl-lp__action--secondary:hover { background: var(--atl-forest); color: var(--atl-paper) !important; }
  .atl-lp__note { margin-top: 16px !important; color: var(--atl-muted); font-size: 14px; }
  .atl-lp__footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px max(20px, calc((100% - 1200px) / 2));
    color: var(--atl-muted);
    font-size: 13px;
  }
  .atl-lp__footer a { text-decoration: underline; text-underline-offset: 3px; }

  @media (max-width: 900px) {
    .atl-lp { height: 100svh; }
    .atl-lp__header { width: calc(100% - 40px); min-height: 64px; flex-shrink: 0; gap: 8px; }
    .atl-lp .atl-lp__logo { height: 48px; }
    .atl-lp__brand { gap: 10px; }
    .atl-lp__brand-name { font-size: clamp(16px, 4.5vw, 20px); }
    .atl-lp__city { font-size: 12px; max-width: 60px; text-align: right; flex-shrink: 0; }
    .atl-lp__experience { display: grid; grid-template-rows: minmax(160px, 1fr) auto; grid-template-columns: 1fr; flex: 1; min-height: min-content; }
    .atl-lp__carousel { min-height: 160px; }
    .atl-lp__copy { max-width: 600px; padding: 20px 20px 16px; align-self: center; }
    .atl-lp h1 { max-width: 20ch; font-size: clamp(30px, 8.4vw, 38px); }
    .atl-lp__text { max-width: 40ch; margin-top: 10px !important; font-size: 16px; line-height: 1.4; }
    .atl-lp__actions { margin-top: 20px; gap: 10px; }
    .atl-lp__action { min-height: 48px; font-size: 16px; padding: 12px 8px; }
    .atl-lp__note { margin-top: 12px !important; font-size: 13px; }
    .atl-lp__footer { flex-shrink: 0; margin-top: auto; padding: 10px 20px max(10px, env(safe-area-inset-bottom)); font-size: 12px; }
  }
  @media (max-width: 360px) {
    .atl-lp__brand-name { font-size: 16px; }
    .atl-lp__action { gap: 6px; font-size: 15px; }
    .atl-lp__action svg { width: 18px; height: 18px; }
  }
  @media (max-width: 900px) and (orientation: landscape) {
    .atl-lp__experience { display: grid; grid-template-columns: 0.85fr 1.15fr; grid-template-rows: 1fr; }
    .atl-lp__carousel { height: auto; min-height: 280px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .atl-lp__slide, .atl-lp__action { transition: none; }
  }

/* Let long campaign copy and enlarged text flow without hiding contact links. */
.atl-lp__copy, .atl-lp__brand { min-width: 0; }
.atl-lp h1, .atl-lp__text { overflow-wrap: anywhere; }
body.admin-bar .atl-lp { min-height: calc(100svh - 32px); }
@media (max-width: 782px) { body.admin-bar .atl-lp { height: calc(100svh - 46px); min-height: calc(100svh - 46px); } }
