:root {
  /* Brand */
  --color-primary: #052d24;
  --color-primary-dark: #054738;
  --color-primary-green: #0a7f5a;
  --color-lime: #e0fc62;
  --color-cream: #f0e9d7;

  /* Neutrals */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f8f8f8;
  --color-gray-200: #f1f1f1;
  --color-gray-700: #373737;

  /* Overlays */
  --overlay-light: rgba(0, 0, 0, 0.25);
  --overlay-medium: rgba(0, 0, 0, 0.35);
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-heavy: rgba(0, 0, 0, 0.85);

  /* White alpha */
  --white-alpha-20: rgba(255, 255, 255, 0.2);
  --white-alpha-30: rgba(255, 255, 255, 0.3);
  --white-alpha-85: rgba(255, 255, 255, 0.85);
  --white-alpha-92: rgba(255, 255, 255, 0.92);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* AEM header: visible by default */
header {
  display: block !important;
  visibility: visible !important;
}

/* Hide AEM header during video loading, scroll, when POI panel is open, or during exploration mode */
html.video-locked header,
html.video-playing header,
html.poi-panel-open header,
html.map-scroll-locked header {
  display: none !important;
  visibility: hidden !important;
}

/* Lock scroll when map is fully in view on mobile */
html.map-scroll-locked,
html.map-scroll-locked body {
  /* position: fixed !important; */
  width: 100% !important;
  touch-action: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
}

h2 {
  font-size: 64px;
  line-height: 76px;
  /* white-space: pre-wrap; */
  font-feature-settings: 'kern' 0;
  font-weight: normal;
  width: 100%;
  height: auto;
  position: relative;
}

h3 {
  font-size: 32px;
  line-height: 100%;
  font-weight: normal;
}

p {
  font-size: 24px;
  line-height: normal;
}

.cta {
  padding: 16px 32px;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: fit-content;
}

.cta--primary {
  outline: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cta--negative {
  background-color: transparent;
  color: var(--color-primary);
  outline: 1px solid var(--color-primary);
}

.cta--negative:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cta--primary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  outline: 1px solid var(--color-primary);
}

.section-padding {
  padding: 80px 40px;
}

/* COMPACT LAYOUT */
@media (max-width: 480px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }

  p {
    font-size: 16px;
  }

  .cta {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }

  .section-padding {
    padding: 40px 16px;
  }
}
