.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--theme-border, #e2e8f0);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.theme-toggle:hover {
  background: var(--theme-bg-secondary, #f8fafc);
  border-color: var(--theme-primary, #3b82f6);
}
.theme-toggle:focus-visible {
  outline: 3px solid var(--theme-primary, #3b82f6);
  outline-offset: 2px;
}
.theme-toggle .theme-toggle-sun {
  display: none;
}
.theme-toggle .theme-toggle-moon {
  display: block;
}
[data-theme=dark] .theme-toggle .theme-toggle-sun {
  display: block;
}
[data-theme=dark] .theme-toggle .theme-toggle-moon {
  display: none;
}

.theme-transition {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.text-primary {
  color: var(--theme-primary);
}

.text-secondary {
  color: var(--theme-text-secondary);
}

.text-muted {
  color: var(--theme-text-muted);
}

.text-success {
  color: var(--theme-success);
}

.text-warning {
  color: var(--theme-warning);
}

.text-danger {
  color: var(--theme-danger);
}

.text-info {
  color: var(--theme-info);
}

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

.bg-secondary {
  background-color: var(--theme-bg-secondary);
}

.bg-success {
  background-color: var(--theme-success);
}

.bg-warning {
  background-color: var(--theme-warning);
}

.bg-danger {
  background-color: var(--theme-danger);
}

@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  .theme-toggle {
    display: none !important;
  }
}
:root {
  --skiwo-font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --skiwo-text: #1a1a1a;
  --skiwo-text-secondary: #4a4a4a;
  --skiwo-bg: #ffffff;
  --skiwo-bg-alt: #f5f5f5;
  --skiwo-border: #e0e0e0;
  --skiwo-primary: #2563eb;
  --skiwo-primary-hover: #1d4ed8;
  --skiwo-max-width: 960px;
  --skiwo-space: 1.5rem;
  --skiwo-space-lg: 2.5rem;
  --skiwo-space-xl: 4rem;
}

.skiwo {
  font-family: var(--skiwo-font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--skiwo-text);
  background: var(--skiwo-bg);
}

.skiwo-main {
  min-height: 60vh;
  padding: var(--skiwo-space-lg) 0 var(--skiwo-space-xl);
}

.skiwo-container {
  max-width: var(--skiwo-max-width);
  margin: 0 auto;
  padding: 0 var(--skiwo-space);
}

.skiwo-header {
  border-bottom: 1px solid var(--skiwo-border);
  padding: var(--skiwo-space) 0;
}

.skiwo-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--skiwo-text);
  text-decoration: none;
  margin-right: var(--skiwo-space-xl);
}

.skiwo-logo:hover {
  color: var(--skiwo-primary);
}

.skiwo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--skiwo-space);
  align-items: center;
}

.skiwo-nav a {
  color: var(--skiwo-text-secondary);
  text-decoration: none;
}

.skiwo-nav a:hover {
  color: var(--skiwo-primary);
}

@media (min-width: 640px) {
  .skiwo-header .skiwo-container {
    display: flex;
    align-items: center;
  }
}
.skiwo-footer {
  border-top: 1px solid var(--skiwo-border);
  padding: var(--skiwo-space-lg) 0 var(--skiwo-space);
  margin-top: auto;
  font-size: 0.9375rem;
  color: var(--skiwo-text-secondary);
}

.skiwo-footer-tagline {
  font-weight: 600;
  color: var(--skiwo-text);
  margin-bottom: 0.25rem;
}

.skiwo-footer-location {
  margin-bottom: 0.25rem;
}

.skiwo-footer-email {
  color: var(--skiwo-primary);
  text-decoration: none;
}

.skiwo-footer-email:hover {
  text-decoration: underline;
}

.skiwo-footer-links {
  margin-top: var(--skiwo-space);
}

.skiwo-footer-links a {
  margin-right: var(--skiwo-space);
  color: var(--skiwo-text-secondary);
  text-decoration: none;
}

.skiwo-footer-links a:hover {
  color: var(--skiwo-primary);
}

.skiwo-footer-copy {
  margin-top: var(--skiwo-space);
  font-size: 0.875rem;
  color: var(--skiwo-text-secondary);
}

.skiwo-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--skiwo-space);
}

.skiwo-intro {
  font-size: 1.125rem;
  color: var(--skiwo-text-secondary);
  margin-bottom: var(--skiwo-space-lg);
  max-width: 60ch;
}

.skiwo-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--skiwo-space);
}

.skiwo-hero {
  text-align: center;
  padding: var(--skiwo-space-xl) 0;
  background: var(--skiwo-bg-alt);
}

.skiwo-hero-headline {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--skiwo-space);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.skiwo-hero-subtext {
  font-size: 1.125rem;
  color: var(--skiwo-text-secondary);
  margin-bottom: var(--skiwo-space-lg);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.skiwo-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--skiwo-space);
  justify-content: center;
  margin-bottom: var(--skiwo-space-lg);
}

.skiwo-proof-line {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--skiwo-text-secondary);
  padding: var(--skiwo-space) 0;
}

.skiwo-section {
  padding: var(--skiwo-space-xl) 0;
}

.skiwo-what-we-do .skiwo-blocks {
  display: grid;
  gap: var(--skiwo-space-lg);
  margin-top: var(--skiwo-space);
}

@media (min-width: 640px) {
  .skiwo-what-we-do .skiwo-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}
.skiwo-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.skiwo-block p {
  color: var(--skiwo-text-secondary);
  font-size: 0.9375rem;
}

.skiwo-bullets {
  list-style: disc;
  padding-left: 1.5rem;
  margin: var(--skiwo-space) 0;
}

.skiwo-bullets li {
  margin-bottom: 0.5rem;
}

.skiwo-company-cards {
  display: grid;
  gap: var(--skiwo-space);
  margin: var(--skiwo-space) 0 var(--skiwo-space-lg);
}

@media (min-width: 640px) {
  .skiwo-company-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .skiwo-company-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.skiwo-company-card {
  padding: var(--skiwo-space);
  border: 1px solid var(--skiwo-border);
  background: var(--skiwo-bg);
}

.skiwo-company-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.skiwo-company-card p {
  font-size: 0.875rem;
  color: var(--skiwo-text-secondary);
}

.skiwo-closing {
  background: var(--skiwo-bg-alt);
}

.skiwo-closing-text {
  margin-bottom: var(--skiwo-space);
  max-width: 55ch;
}

.skiwo-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.skiwo-btn-primary {
  background: var(--skiwo-primary);
  color: #fff;
}

.skiwo-btn-primary:hover {
  background: var(--skiwo-primary-hover);
  color: #fff;
}

.skiwo-btn-secondary {
  background: transparent;
  color: var(--skiwo-text);
  border: 1px solid var(--skiwo-border);
}

.skiwo-btn-secondary:hover {
  border-color: var(--skiwo-primary);
  color: var(--skiwo-primary);
}

.skiwo-company-detail {
  margin-bottom: var(--skiwo-space-xl);
  padding-bottom: var(--skiwo-space-xl);
  border-bottom: 1px solid var(--skiwo-border);
}

.skiwo-company-detail:last-of-type {
  border-bottom: none;
}

.skiwo-company-detail h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--skiwo-space);
}

.skiwo-company-detail p {
  margin-bottom: 0.5rem;
}

.skiwo-form {
  max-width: 32rem;
  margin-top: var(--skiwo-space-lg);
}

.skiwo-form-field {
  margin-bottom: var(--skiwo-space);
}

.skiwo-form-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.skiwo-form-field input,
.skiwo-form-field select,
.skiwo-form-field textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--skiwo-border);
  border-radius: 4px;
}

.skiwo-form-field input:focus,
.skiwo-form-field select:focus,
.skiwo-form-field textarea:focus {
  outline: none;
  border-color: var(--skiwo-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.skiwo-contact-success {
  padding: var(--skiwo-space);
  background: #dcfce7;
  color: #166534;
  border-radius: 4px;
  margin-top: var(--skiwo-space-lg);
}

.skiwo-contact-direct {
  margin-bottom: var(--skiwo-space);
}

.skiwo-contact-note {
  font-size: 0.9375rem;
  color: var(--skiwo-text-secondary);
  margin-top: var(--skiwo-space-lg);
}

.skiwo-media-list {
  list-style: none;
  padding: 0;
  margin: var(--skiwo-space) 0 0;
}

.skiwo-media-item {
  padding: var(--skiwo-space) 0;
  border-bottom: 1px solid var(--skiwo-border);
}

.skiwo-media-link {
  font-weight: 600;
  color: var(--skiwo-primary);
  text-decoration: none;
}

.skiwo-media-link:hover {
  text-decoration: underline;
}

.skiwo-media-meta {
  font-size: 0.875rem;
  color: var(--skiwo-text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.skiwo-media-tag {
  display: inline-block;
  margin-left: 0.5rem;
}

.skiwo-media-summary {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--skiwo-text-secondary);
}

.skiwo-media-empty {
  color: var(--skiwo-text-secondary);
  font-style: italic;
  margin-top: var(--skiwo-space);
}

.skiwo-private-list {
  list-style: none;
  padding: 0;
}

.skiwo-private-list li {
  margin-bottom: 0.5rem;
}

.skiwo-private-list a {
  color: var(--skiwo-primary);
  text-decoration: none;
}

.skiwo-private-list a:hover {
  text-decoration: underline;
}
