:root {
  --granate: #111111;
  --granate-hover: #444444;
  --text-primary: #111111;
  --text-secondary: #666666;
  --background: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-primary);
  background: var(--background);
  font-size: 1.125rem;
  line-height: 1.7;
  padding-top: 4.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.header-top {
  padding-top: max(0rem, 10vh - 1.25rem);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--background);
  padding: 1rem 1rem;
  transition: transform 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-compact {
  padding: 0.75rem 1.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-nav {
  max-width: 100ch;
  margin: 0 auto;
  container-type: inline-size;
  width: 100%; display: flex; align-items: flex-end; flex-wrap: nowrap;
}

.site-nav .nav-middle {
  display: flex;
  gap: 1.5625rem;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

@container (max-width: 48.75em) {
  .site-nav .nav-middle { display: none; }
}

.site-logo {
  height: 2.5rem;
  vertical-align: bottom;
  transition: height 0.3s ease;
}

.site-header.is-compact .site-logo {
  height: 1.875rem;
}

.site-header.is-hidden .site-logo {
  height: 1.875rem;
}

.site-footer {
  max-width: 100ch;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-footer p {
  color: var(--text-secondary);
}

main {
  max-width: 100ch;
  margin: 0 auto;
  padding: 0rem 1.5rem 2rem 1.5rem;
}

p {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--granate);
  margin-top: 3rem;
}

h2[id] {
  scroll-margin-top: 6rem;
}

a {
  color: var(--granate);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--granate-hover);
  text-decoration: underline;
}

hr {
  border: 0;
  border-top: 1px solid var(--granate);
  opacity: 0.3;
}

button,
.button {
  background: transparent;
  color: var(--granate);
  border: 1px solid var(--granate);
  padding: 0.5rem 1rem;
  font-weight: 600;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  color: var(--granate-hover);
  border-color: var(--granate-hover);
}

.page-content p {
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-content li {
  color: var(--text-secondary);
}

.reveal-on-scroll,
.js .page-content > div,
.js .page-content > section,
.js .page-content > h2,
.js .page-content > h3,
.js .page-content > p,
.js .page-content > ul,
.js .page-content > ol {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

.js .reveal-on-scroll,
.js .page-content > div,
.js .page-content > section,
.js .page-content > h2,
.js .page-content > h3,
.js .page-content > p,
.js .page-content > ul,
.js .page-content > ol {
  opacity: 0;
  transform: translateY(1rem);
}

.js .reveal-on-scroll.is-visible,
.js .page-content > div.is-visible,
.js .page-content > section.is-visible,
.js .page-content > h2.is-visible,
.js .page-content > h3.is-visible,
.js .page-content > p.is-visible,
.js .page-content > ul.is-visible,
.js .page-content > ol.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .js .reveal-on-scroll,
  .js .page-content > div,
  .js .page-content > section,
  .js .page-content > h2,
  .js .page-content > h3,
  .js .page-content > p,
  .js .page-content > ul,
  .js .page-content > ol {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page-content .hero-row {
  margin-bottom: 0;
}

.page-content .hero-row + p {
  margin-top: 0;
}

.row { display: flex; flex-wrap: wrap; gap: 0; }
.col { flex: 1 1 18.75rem; }
.hero-row { align-items: stretch; margin-bottom: 3.125rem; }
.hero-text {
  display: flex;
  align-items: top;
  margin-top: 1.25rem;
  text-align: center;
  margin-left: max(1.5rem, calc((100vw - 100ch) / 2 + 1.5rem));
  margin-right: max(1.5rem, calc((100vw - 100ch) / 2 + 1.5rem));
}

.hero-text h2 {
  font-size: min(2.1875rem, max(1.5625rem, 1.5vh + 1.5vw));
  color: #ffffff;
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.hero-image {
  margin-top: 0;
  margin-right: max(1.5rem, calc((100vw - 100ch) / 2 + 1.5rem));
  margin-bottom: 0;
  text-align: right;
  align-self: flex-end;
}

.hero-image-img {
  vertical-align: bottom;
  height: min(42vh, 100vw);
  width: auto;
}
.hero-row.is-inline .hero-image {
  margin-top: 2.5rem;
}
.hero-row.is-inline .hero-text {
  margin-top: 4.375rem;
  margin-right: 0rem;
}

.key-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.feature-section {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}

.about-section {
  position: relative;
  padding: 1.5rem 1.4rem 1.6rem;
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.125rem;
  box-shadow: 0 1.125rem 2.5rem -2.125rem rgba(0, 0, 0, 0.35);
}

.about-section::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 0.125rem;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.12) 100%);
}

.about-section h2 {
  margin-top: 0;
}

.about-section h2 {
  padding-left: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(15rem, 0.9fr);
  gap: 1.4rem;
  padding-left: 1rem;
}

.about-copy p:first-child {
  margin-top: 0.2rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 0.875rem;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.about-highlight p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
  text-wrap: balance;
}

.key-area-card {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0.625rem;
  padding: 1.1rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
  box-shadow: 0 0.5rem 1.5rem -1.25rem rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease;
}

.key-area-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  object-fit: contain;
  margin-top: 0.1rem;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.key-area-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

.key-area-card:hover .key-area-icon,
.key-area-card:focus-within .key-area-icon {
  opacity: 0.7;
}

.key-area-card:hover,
.key-area-card:focus-within {
  border-color: rgba(17, 17, 17, 0.52);
}

.key-area-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.125rem;
  line-height: 1.35;
}

.key-area-card p {
  margin: 0;
}

@media (max-width: 53.75em) {
  .feature-section {
    margin-top: 3rem;
    margin-bottom: 3.3rem;
  }

  .about-layout,
  .key-areas-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 1.25rem 1rem 1.2rem;
  }

  .about-section::before {
    left: 1rem;
    top: 1.25rem;
    bottom: 1.25rem;
  }

  .about-layout {
    padding-left: 0.9rem;
  }

  .about-section h2 {
    padding-left: 0.9rem;
  }

  .key-area-card {
    gap: 0.85rem;
  }
}

@media print {
  body {
    padding-top: 0;
    font-size: 12pt;
    line-height: 1.45;
  }

  .site-header {
    display: none;
  }

  main,
  .site-footer {
    max-width: none;
    padding: 0;
    margin: 0;
  }

  .reveal-on-scroll,
  .js .reveal-on-scroll,
  .js .reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-row,
  .banner-row {
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  .hero-row {
    min-height: 55mm;
    background-size: cover !important;
  }

  .banner-row {
    height: 70mm !important;
    background-size: cover !important;
  }

  .key-areas-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .feature-section,
  .about-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .about-section::before {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding-left: 0;
  }

  .about-highlight {
    background: #ffffff;
    box-shadow: none;
  }

  .key-area-card {
    break-inside: avoid-page;
    page-break-inside: avoid;
    box-shadow: none;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.45);
  }

  .key-area-icon {
    opacity: 0.5;
  }

  h2,
  h3 {
    break-after: avoid-page;
    page-break-after: avoid;
  }
}