@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --stl1-color-primary: #4E6043;
  --stl1-color-primary-ink: #3A4A33;
  --stl1-color-primary-soft: #E7EBE3;
  --stl1-color-secondary: #D3D8CF;
  --stl1-color-accent: #5DDF0C;
  --stl1-color-bg: #FAFAFA;
  --stl1-color-bg-alt: #F3F4F6;
  --stl1-color-bg-accent: #F0F2F5;
  --stl1-color-bg-dark: #1F2937;
  --stl1-color-text: #1F2937;
  --stl1-color-text-muted: #6B7280;
  --stl1-color-text-on-dark: #F3F4F6;
  --stl1-color-text-on-dark-muted: #9CA3AF;
  --stl1-color-border: rgba(31, 41, 55, 0.12);
  --stl1-color-border-on-dark: rgba(243, 244, 246, 0.18);

  --stl1-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --stl1-font-body: 'Outfit', Arial, Helvetica, sans-serif;

  --stl1-text-xs: 0.75rem;
  --stl1-text-sm: 0.875rem;
  --stl1-text-base: 1rem;
  --stl1-text-lg: 1.25rem;
  --stl1-text-xl: 1.625rem;
  --stl1-text-xxl: 2.25rem;
  --stl1-text-hero: 3rem;

  --stl1-space-xs: 10px;
  --stl1-space-sm: 20px;
  --stl1-space-md: 30px;
  --stl1-space-lg: 40px;
  --stl1-space-xl: 60px;
  --stl1-space-xxl: 80px;

  --stl1-radius-tab: 4px 22px 4px 22px;
  --stl1-radius-tab-sm: 3px 14px 3px 14px;
  --stl1-radius-media: 18px 18px 4px 18px;
  --stl1-radius-pill: 999px;

  --stl1-shadow-float: 0 12px 34px -14px rgba(31, 41, 55, 0.30);
  --stl1-shadow-card: 0 16px 40px -22px rgba(31, 41, 55, 0.35);
  --stl1-shadow-media: 0 22px 48px -22px rgba(31, 41, 55, 0.32);

  --stl1-ease: 220ms ease;
  --stl1-measure: 68ch;

  --stl1-z-nav: 100;
  --stl1-z-overlay: 150;
  --stl1-z-action: 160;
  --stl1-z-toggle: 170;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-base);
  line-height: 1.5;
  color: var(--stl1-color-text);
  background: var(--stl1-color-bg);
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p a:not([class]),
li a:not([class]),
figcaption a:not([class]),
blockquote a:not([class]),
dd a:not([class]) {
  color: var(--stl1-color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

p a:not([class]):hover,
li a:not([class]):hover,
figcaption a:not([class]):hover,
blockquote a:not([class]):hover,
dd a:not([class]):hover {
  color: var(--stl1-color-primary-ink);
}

:focus-visible {
  outline: 2px solid var(--stl1-color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--stl1-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--stl1-color-text);
  margin: 0 0 var(--stl1-space-sm);
}

h1 { font-size: var(--stl1-text-hero); }
h2 { font-size: var(--stl1-text-xxl); }
h3 { font-size: var(--stl1-text-xl); }
h4 { font-size: var(--stl1-text-lg); }

p {
  margin: 0 0 var(--stl1-space-sm);
  max-width: var(--stl1-measure);
}

p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.stl1-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--stl1-space-xs);
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stl1-color-text-muted);
  margin: 0 0 var(--stl1-space-xs);
}

.stl1-kicker::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--stl1-color-accent);
  border-radius: var(--stl1-radius-pill);
  flex-shrink: 0;
}

.stl1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--stl1-space-xs);
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-sm);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--stl1-radius-tab);
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background var(--stl1-ease), color var(--stl1-ease), border-color var(--stl1-ease), transform var(--stl1-ease);
}

.stl1-btn-primary {
  background: var(--stl1-color-primary);
  color: var(--stl1-color-bg);
}

.stl1-btn-primary:hover {
  background: var(--stl1-color-primary-ink);
  transform: translateY(-2px);
}

.stl1-btn-outline {
  background: transparent;
  border-color: var(--stl1-color-primary);
  color: var(--stl1-color-primary);
}

.stl1-btn-outline:hover {
  background: var(--stl1-color-primary);
  color: var(--stl1-color-bg);
}

.stl1-navbar {
  position: fixed;
  top: var(--stl1-space-sm);
  left: 0;
  right: 0;
  z-index: var(--stl1-z-nav);
  display: flex;
  justify-content: center;
  padding-inline: var(--stl1-space-sm);
}

.stl1-navbar-inner {
  width: 100%;
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--stl1-space-sm);
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--stl1-radius-pill);
  padding: 10px 12px 10px 26px;
  box-shadow: var(--stl1-shadow-float);
  transition: background var(--stl1-ease), box-shadow var(--stl1-ease), padding var(--stl1-ease);
}

.stl1-navbar.scrolled .stl1-navbar-inner {
  background: rgba(250, 250, 250, 0.94);
  box-shadow: 0 16px 40px -16px rgba(31, 41, 55, 0.38);
}

.stl1-navbar-brand {
  order: 2;
  margin-inline: auto;
  font-family: var(--stl1-font-display);
  font-weight: 600;
  font-style: italic;
  font-size: var(--stl1-text-lg);
  color: var(--stl1-color-primary);
  white-space: nowrap;
  padding-inline: var(--stl1-space-sm);
}

.stl1-navbar-links {
  order: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stl1-navbar-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-sm);
  font-weight: 500;
  white-space: nowrap;
  color: var(--stl1-color-text);
  padding: 9px 16px;
  border-radius: var(--stl1-radius-pill);
  transition: background var(--stl1-ease), color var(--stl1-ease);
}

.stl1-navbar-links a:hover {
  background: var(--stl1-color-secondary);
  color: var(--stl1-color-primary-ink);
}

.stl1-navbar-links a.is-active {
  background: var(--stl1-color-primary);
  color: var(--stl1-color-bg);
}

.stl1-navbar-action {
  order: 3;
  padding: 10px 22px;
  font-size: var(--stl1-text-sm);
}

.stl1-navbar-toggle {
  order: 4;
  display: none;
  z-index: var(--stl1-z-toggle);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stl1-navbar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--stl1-color-primary);
  border-radius: var(--stl1-radius-pill);
  transition: transform var(--stl1-ease), opacity var(--stl1-ease);
}

.stl1-navbar-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.stl1-navbar-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.stl1-navbar-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .stl1-navbar-inner {
    padding: 10px 10px 10px 22px;
  }

  .stl1-navbar-brand {
    order: 1;
    margin-inline: 0;
    padding-inline: 0;
  }

  .stl1-navbar-toggle {
    display: flex;
    order: 3;
  }

  .stl1-navbar-links {
    position: fixed;
    inset: 0;
    z-index: var(--stl1-z-overlay);
    order: initial;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--stl1-space-xs);
    background: rgba(31, 41, 55, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--stl1-ease);
  }

  .stl1-navbar-links a {
    color: var(--stl1-color-text-on-dark);
    font-size: var(--stl1-text-xl);
    font-family: var(--stl1-font-display);
    padding: 10px 26px;
  }

  .stl1-navbar-links a:hover,
  .stl1-navbar-links a.is-active {
    background: rgba(243, 244, 246, 0.12);
    color: var(--stl1-color-accent);
  }

  .stl1-navbar-action {
    position: fixed;
    left: 50%;
    bottom: var(--stl1-space-xl);
    transform: translate(-50%, 16px);
    z-index: var(--stl1-z-action);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--stl1-ease), transform var(--stl1-ease);
  }

  body.menu-open .stl1-navbar-links,
  body.menu-open .stl1-navbar-action {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .stl1-navbar-action {
    transform: translate(-50%, 0);
  }
}

.stl1-hero {
  position: relative;
  padding: calc(var(--stl1-space-xxl) + 70px) var(--stl1-space-sm) var(--stl1-space-xl);
  background: var(--stl1-color-bg-alt);
}

.stl1-hero--before-after-slider {
  display: flex;
  flex-direction: column;
  gap: var(--stl1-space-xl);
  max-width: 1280px;
  margin-inline: auto;
}

.stl1-hero-compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: var(--stl1-radius-media);
  box-shadow: var(--stl1-shadow-media);
  background: var(--stl1-color-bg-dark);
}

.stl1-hero-compare-before,
.stl1-hero-compare-after {
  position: absolute;
  inset: 0;
  margin: 0;
}

.stl1-hero-compare-after {
  z-index: 1;
}

.stl1-hero-compare-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.6s ease;
}

.stl1-hero-compare-before img,
.stl1-hero-compare-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stl1-hero-compare-before figcaption,
.stl1-hero-compare-after figcaption {
  position: absolute;
  top: var(--stl1-space-sm);
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stl1-color-text);
  background: var(--stl1-color-bg);
  padding: 6px 14px;
  border-radius: var(--stl1-radius-tab-sm);
}

.stl1-hero-compare-before figcaption {
  left: var(--stl1-space-sm);
}

.stl1-hero-compare-after figcaption {
  right: var(--stl1-space-sm);
}

.stl1-hero-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 3px;
  background: var(--stl1-color-bg);
  transform: translateX(-50%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.stl1-hero-compare-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--stl1-color-accent);
  border-radius: var(--stl1-radius-tab-sm);
  box-shadow: 0 4px 14px rgba(31, 41, 55, 0.35);
}

.stl1-hero-compare:hover .stl1-hero-compare-before,
.stl1-hero-compare:focus-within .stl1-hero-compare-before {
  clip-path: inset(0 22% 0 0);
}

.stl1-hero-compare:hover .stl1-hero-compare-handle,
.stl1-hero-compare:focus-within .stl1-hero-compare-handle {
  left: 78%;
}

.stl1-hero-content {
  max-width: 640px;
  margin-inline: auto;
  text-align: left;
}

.stl1-hero-content h1 {
  margin-bottom: var(--stl1-space-sm);
}

.stl1-hero-lede {
  font-size: var(--stl1-text-lg);
  color: var(--stl1-color-text-muted);
  max-width: 56ch;
}

.stl1-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stl1-space-sm);
  margin-top: var(--stl1-space-md);
}

@media (min-width: 768px) {
  .stl1-hero-content {
    text-align: center;
  }

  .stl1-hero-lede {
    margin-inline: auto;
  }

  .stl1-cta-group {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .stl1-hero--before-after-slider {
    flex-direction: row;
    align-items: center;
  }

  .stl1-hero-compare {
    flex: 1 1 58%;
  }

  .stl1-hero-content {
    flex: 1 1 42%;
    text-align: left;
    margin-inline: 0;
  }

  .stl1-hero-lede {
    margin-inline: 0;
  }

  .stl1-cta-group {
    justify-content: flex-start;
  }
}

.stl1-content-section,
.stl1-grid,
.stl1-navbar-inner {
  width: 100%;
}

.stl1-content-section,
.stl1-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--stl1-space-sm);
  padding-block: var(--stl1-space-xl);
}

.stl1-content-section:nth-of-type(even) {
  background: var(--stl1-color-bg-accent);
}

@media (min-width: 768px) {
  .stl1-content-section,
  .stl1-grid {
    padding-inline: var(--stl1-space-lg);
  }
}

@media (min-width: 1024px) {
  .stl1-content-section,
  .stl1-grid {
    padding-inline: var(--stl1-space-xl);
  }
}

main > .stl1-content-section:first-child,
body > .stl1-content-section:first-of-type {
  padding-top: calc(var(--stl1-space-xxl) + 70px);
}

.stl1-grid--three-column-equal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stl1-space-lg);
}

@media (min-width: 768px) {
  .stl1-grid--three-column-equal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stl1-grid--three-column-equal {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stl1-card {
  position: relative;
  background: var(--stl1-color-bg);
  border: 1px solid var(--stl1-color-border);
  border-radius: var(--stl1-radius-tab);
  box-shadow: var(--stl1-shadow-card);
  padding: var(--stl1-space-lg);
}

.stl1-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--stl1-color-accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: var(--stl1-radius-tab) 0 0 0;
}

.stl1-card h3 {
  font-size: var(--stl1-text-lg);
  margin-bottom: var(--stl1-space-xs);
}

.stl1-card p {
  color: var(--stl1-color-text-muted);
  margin-bottom: 0;
}

.stl1-band--image-left-50-text-right-50 {
  display: flex;
  flex-direction: column;
  gap: var(--stl1-space-lg);
}

.stl1-band-media {
  position: relative;
}

.stl1-band-media img {
  width: 100%;
  border-radius: var(--stl1-radius-media);
  box-shadow: var(--stl1-shadow-media);
}

.stl1-band-media figcaption {
  margin-top: var(--stl1-space-xs);
  font-size: var(--stl1-text-sm);
  font-style: italic;
  color: var(--stl1-color-text-muted);
  max-width: none;
}

.stl1-band-text h2 {
  margin-bottom: var(--stl1-space-xs);
}

@media (min-width: 1024px) {
  .stl1-band--image-left-50-text-right-50 {
    flex-direction: row;
    align-items: center;
    gap: var(--stl1-space-xl);
  }

  .stl1-band-media,
  .stl1-band-text {
    flex: 1 1 50%;
    min-width: 0;
  }
}

.stl1-band--masonry-text-columns h2 {
  margin-bottom: var(--stl1-space-md);
}

.stl1-band-masonry {
  columns: 1;
  column-gap: var(--stl1-space-xl);
}

.stl1-band-masonry > div {
  break-inside: avoid;
  margin-bottom: var(--stl1-space-lg);
  padding-left: var(--stl1-space-sm);
  border-left: 3px solid var(--stl1-color-secondary);
}

.stl1-band-masonry > div h3 {
  font-size: var(--stl1-text-lg);
  margin-bottom: 6px;
}

.stl1-band-masonry > div p {
  color: var(--stl1-color-text-muted);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stl1-band-masonry {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .stl1-band-masonry {
    columns: 3;
  }
}

.stl1-band--timeline-horizontal-vertical h2 {
  margin-bottom: var(--stl1-space-md);
}

.stl1-band-timeline {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--stl1-space-lg);
  padding-left: var(--stl1-space-lg);
  border-left: 2px solid var(--stl1-color-secondary);
}

.stl1-band-timeline li {
  position: relative;
}

.stl1-band-timeline li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: calc(-1 * var(--stl1-space-lg) - 6px);
  width: 12px;
  height: 12px;
  background: var(--stl1-color-accent);
  border: 2px solid var(--stl1-color-bg);
  border-radius: 50%;
}

.stl1-band-timeline time {
  display: block;
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stl1-color-primary);
  margin-bottom: 4px;
}

.stl1-band-timeline h3 {
  font-size: var(--stl1-text-lg);
  margin-bottom: 4px;
}

.stl1-band-timeline p {
  color: var(--stl1-color-text-muted);
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .stl1-band-timeline {
    flex-direction: row;
    border-left: none;
    border-top: 2px solid var(--stl1-color-secondary);
    padding-left: 0;
    padding-top: var(--stl1-space-lg);
    gap: var(--stl1-space-xl);
  }

  .stl1-band-timeline li {
    flex: 1;
  }

  .stl1-band-timeline li::before {
    top: calc(-1 * var(--stl1-space-lg) - 6px);
    left: 0;
  }
}

.stl1-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stl1-space-xl);
}

@media (min-width: 768px) {
  .stl1-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stl1-portfolio-grid > .stl1-portfolio-pair:nth-child(even) {
    margin-top: var(--stl1-space-xl);
  }

  .stl1-portfolio-grid > .stl1-portfolio-pair:only-child {
    grid-column: 1 / -1;
  }
}

.stl1-portfolio-pair {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--stl1-radius-media);
  overflow: hidden;
  box-shadow: var(--stl1-shadow-media);
}

.stl1-portfolio-pair figure {
  position: relative;
  background: var(--stl1-color-bg-dark);
}

.stl1-portfolio-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stl1-portfolio-pair figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 41, 55, 0.82), transparent);
  color: var(--stl1-color-text-on-dark);
  font-size: var(--stl1-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--stl1-space-sm) var(--stl1-space-xs) var(--stl1-space-xs);
  max-width: none;
}

@media (min-width: 768px) {
  .stl1-portfolio-pair {
    flex-direction: row;
  }

  .stl1-portfolio-pair figure {
    flex: 1 1 50%;
  }
}

.stl1-testimonial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stl1-space-lg);
}

@media (min-width: 768px) {
  .stl1-testimonial-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stl1-testimonial {
  position: relative;
  background: var(--stl1-color-bg);
  border: 1px solid var(--stl1-color-border);
  border-radius: var(--stl1-radius-tab);
  padding: var(--stl1-space-lg);
  margin: 0;
}

.stl1-testimonial::before {
  content: '\201C';
  display: block;
  font-family: var(--stl1-font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--stl1-color-accent);
  margin-bottom: var(--stl1-space-xs);
}

.stl1-testimonial blockquote {
  margin: 0 0 var(--stl1-space-sm);
  font-family: var(--stl1-font-display);
  font-size: var(--stl1-text-lg);
  font-style: italic;
  color: var(--stl1-color-text);
  border: none;
  padding: 0;
  max-width: none;
}

.stl1-testimonial figcaption {
  font-size: var(--stl1-text-sm);
  color: var(--stl1-color-text-muted);
  font-weight: 600;
  max-width: none;
}

.stl1-field-note {
  background: var(--stl1-color-primary-soft);
  border-radius: var(--stl1-radius-tab);
  padding: var(--stl1-space-lg);
  border-left: 4px solid var(--stl1-color-primary);
}

.stl1-field-note blockquote {
  border: none;
  padding: 0;
  margin: 0 0 var(--stl1-space-xs);
  font-family: var(--stl1-font-display);
  font-size: var(--stl1-text-lg);
  font-style: italic;
  max-width: none;
}

.stl1-field-note figcaption,
.stl1-field-note cite {
  font-size: var(--stl1-text-sm);
  color: var(--stl1-color-text-muted);
  font-style: normal;
  max-width: none;
}

blockquote {
  margin: var(--stl1-space-md) 0;
  padding-left: var(--stl1-space-md);
  border-left: 3px solid var(--stl1-color-secondary);
  color: var(--stl1-color-text);
  max-width: var(--stl1-measure);
}

.stl1-pull-quote {
  border-left: none;
  padding: 0 0 0 var(--stl1-space-lg);
  margin: var(--stl1-space-lg) 0;
  max-width: 52ch;
  position: relative;
}

.stl1-pull-quote::before {
  content: '\201C';
  position: absolute;
  left: -6px;
  top: -18px;
  font-family: var(--stl1-font-display);
  font-size: 4rem;
  color: var(--stl1-color-accent);
}

.stl1-pull-quote p {
  font-family: var(--stl1-font-display);
  font-size: var(--stl1-text-xxl);
  font-style: italic;
  line-height: 1.25;
  color: var(--stl1-color-primary-ink);
}

dl {
  margin: var(--stl1-space-md) 0;
}

dt {
  font-weight: 600;
  color: var(--stl1-color-text);
}

dd {
  margin: 0 0 var(--stl1-space-sm);
  padding-left: 0;
  color: var(--stl1-color-text-muted);
  max-width: var(--stl1-measure);
}

dl.stl1-roster {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stl1-space-md);
}

@media (min-width: 768px) {
  dl.stl1-roster {
    grid-template-columns: repeat(2, 1fr);
  }
}

dl.stl1-roster dt {
  font-family: var(--stl1-font-display);
  font-size: var(--stl1-text-xl);
  background: var(--stl1-color-bg-accent);
  border-radius: var(--stl1-radius-tab) var(--stl1-radius-tab) 0 0;
  padding: var(--stl1-space-sm) var(--stl1-space-sm) 4px;
}

dl.stl1-roster dd {
  background: var(--stl1-color-bg-accent);
  border-radius: 0 0 var(--stl1-radius-tab) var(--stl1-radius-tab);
  padding: 0 var(--stl1-space-sm) var(--stl1-space-sm);
  margin-bottom: 0;
}

dl.stl1-faq-list dt {
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-base);
  padding-top: var(--stl1-space-sm);
  border-top: 1px solid var(--stl1-color-border);
}

dl.stl1-faq-list dt:first-of-type {
  border-top: none;
  padding-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--stl1-text-sm);
  margin: var(--stl1-space-md) 0;
}

caption {
  text-align: left;
  font-size: var(--stl1-text-sm);
  color: var(--stl1-color-text-muted);
  margin-bottom: var(--stl1-space-xs);
}

th,
td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stl1-color-border);
}

thead th {
  font-family: var(--stl1-font-body);
  font-weight: 600;
  color: var(--stl1-color-bg);
  background: var(--stl1-color-primary);
}

thead th:first-child {
  border-radius: 8px 0 0 0;
}

thead th:last-child {
  border-radius: 0 8px 0 0;
}

tbody tr:nth-child(even) {
  background: var(--stl1-color-bg-alt);
}

.stl1-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--stl1-shadow-card);
}

.stl1-table-note td {
  font-size: var(--stl1-text-xs);
  font-style: italic;
  color: var(--stl1-color-text-muted);
  border-bottom: none;
  padding-top: var(--stl1-space-sm);
}

details {
  border-bottom: 1px solid var(--stl1-color-border);
  padding: var(--stl1-space-sm) 0;
}

summary {
  font-family: var(--stl1-font-body);
  font-weight: 600;
  font-size: var(--stl1-text-base);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--stl1-space-sm);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-family: var(--stl1-font-display);
  font-size: var(--stl1-text-xl);
  color: var(--stl1-color-primary);
  flex-shrink: 0;
  transition: transform var(--stl1-ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: var(--stl1-space-sm);
  color: var(--stl1-color-text-muted);
}

.stl1-details-group {
  border-top: 1px solid var(--stl1-color-border);
  margin: var(--stl1-space-md) 0;
  counter-reset: stl1-step;
}

.stl1-details-group details {
  counter-increment: stl1-step;
}

.stl1-details-group--numbered summary::before {
  content: counter(stl1-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-xs);
  background: var(--stl1-color-primary);
  color: var(--stl1-color-bg);
  border-radius: 50%;
  margin-right: var(--stl1-space-xs);
}

.stl1-details-group--numbered summary {
  justify-content: flex-start;
}

.stl1-details-group--numbered summary::after {
  margin-left: auto;
}

figure:not([class]) img {
  border-radius: var(--stl1-radius-media);
  box-shadow: var(--stl1-shadow-media);
}

figure:not([class]) figcaption {
  margin-top: var(--stl1-space-xs);
  font-size: var(--stl1-text-sm);
  font-style: italic;
  color: var(--stl1-color-text-muted);
  max-width: none;
}

.stl1-vendor-footnote {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--stl1-space-md) var(--stl1-space-sm);
  font-size: var(--stl1-text-sm);
  font-style: italic;
  color: var(--stl1-color-text-muted);
  border-top: 1px dashed var(--stl1-color-border);
}

@media (min-width: 768px) {
  .stl1-vendor-footnote {
    padding-inline: var(--stl1-space-lg);
  }
}

.stl1-footer {
  background: var(--stl1-color-bg-dark);
  color: var(--stl1-color-text-on-dark-muted);
  border-top: 6px solid var(--stl1-color-primary);
}

.stl1-footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--stl1-space-xxl) var(--stl1-space-sm) var(--stl1-space-lg);
}

.stl1-footer-inner--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stl1-space-lg);
}

@media (min-width: 768px) {
  .stl1-footer-inner {
    padding-inline: var(--stl1-space-lg);
  }

  .stl1-footer-inner--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--stl1-space-xl);
  }
}

@media (min-width: 1024px) {
  .stl1-footer-inner {
    padding-inline: var(--stl1-space-xl);
  }
}

.stl1-footer-heading {
  font-family: var(--stl1-font-body);
  font-size: var(--stl1-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stl1-color-accent);
  margin-bottom: var(--stl1-space-sm);
}

.stl1-footer-column p {
  margin: 0 0 var(--stl1-space-xs);
  max-width: none;
}

.stl1-footer-column a {
  color: var(--stl1-color-text-on-dark);
  text-decoration: underline;
  text-decoration-color: var(--stl1-color-border-on-dark);
  text-underline-offset: 0.15em;
}

.stl1-footer-column a:hover {
  color: var(--stl1-color-accent);
}

.stl1-footer-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--stl1-space-xs);
  margin: 0;
}

.stl1-footer-hours dt {
  color: var(--stl1-color-text-on-dark);
  font-weight: 600;
}

.stl1-footer-hours dd {
  margin: 0 0 4px;
  color: var(--stl1-color-text-on-dark-muted);
  max-width: none;
}

.stl1-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stl1-footer-meta {
  border-top: 1px solid var(--stl1-color-border-on-dark);
}

.stl1-footer-meta--split {
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--stl1-space-sm) var(--stl1-space-sm) var(--stl1-space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--stl1-space-xs);
  font-size: var(--stl1-text-xs);
}

@media (min-width: 768px) {
  .stl1-footer-meta--split {
    padding-inline: var(--stl1-space-lg);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.stl1-footer-meta p {
  margin: 0;
  color: var(--stl1-color-text-on-dark-muted);
  max-width: none;
}

.stl1-footer-legal {
  display: flex;
  gap: var(--stl1-space-sm);
}

.stl1-footer-legal a {
  color: var(--stl1-color-text-on-dark-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.stl1-footer-legal a:hover {
  color: var(--stl1-color-accent);
}
