:root {
  --chrome-bg: #f5efe5;
  --chrome-bg-alt: #ebe3d5;
  --chrome-dark: #134e4a;
  --chrome-accent: #1d6b62;
  --chrome-text: #172033;
  --chrome-text-muted: #4b5563;
  --chrome-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.chrome-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.chrome-header {
  background-color: var(--chrome-bg);
  border-bottom: 1px solid var(--chrome-bg-alt);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
}

.chrome-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chrome-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 2;
}

.chrome-brand svg {
  height: 2rem;
  width: auto;
  color: var(--chrome-dark);
}

.chrome-brand-name {
  font-family: var(--chrome-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--chrome-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-stretch: condensed;
}

.chrome-nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .chrome-nav {
    display: flex;
  }
}

.chrome-nav-link {
  color: var(--chrome-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.chrome-nav-link:hover {
  color: var(--chrome-accent);
}

.chrome-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.chrome-btn-primary {
  background-color: var(--chrome-dark);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  display: none;
}

@media (min-width: 768px) {
  .chrome-btn-primary {
    display: inline-block;
  }
}

.chrome-btn-primary:hover {
  background-color: var(--chrome-accent);
}

.chrome-burger-btn {
  background: none;
  border: none;
  color: var(--chrome-dark);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
}

@media (min-width: 1024px) {
  .chrome-burger-btn {
    display: none;
  }
}

.chrome-burger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.chrome-mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(23, 32, 51, 0.6);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.chrome-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.chrome-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background-color: var(--chrome-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
}

.chrome-mobile-overlay.is-open .chrome-mobile-panel {
  transform: translateX(0);
}

.chrome-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--chrome-bg-alt);
}

.chrome-close-btn {
  background: none;
  border: none;
  color: var(--chrome-dark);
  cursor: pointer;
  padding: 0.5rem;
}

.chrome-close-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.chrome-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  gap: 1.75rem;
  overflow-y: auto;
}

.chrome-mobile-link {
  font-family: var(--chrome-font);
  font-size: 1.5rem;
  font-weight: 600;
  font-stretch: condensed;
  color: var(--chrome-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
}

.chrome-mobile-footer {
  padding: 2rem 1.5rem;
  background-color: var(--chrome-bg-alt);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chrome-mobile-contact-link {
  color: var(--chrome-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.chrome-footer {
  background-color: var(--chrome-bg);
  border-top: 1px solid var(--chrome-bg-alt);
  padding: 4rem 0 2rem;
  color: var(--chrome-text);
}

.chrome-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .chrome-footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
  }
}

.chrome-footer-brand-name {
  font-family: var(--chrome-font);
  font-weight: 700;
  font-size: 1.5rem;
  font-stretch: condensed;
  color: var(--chrome-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.chrome-footer-brand-desc {
  color: var(--chrome-text-muted);
  line-height: 1.6;
  max-width: 300px;
  font-size: 0.9375rem;
}

.chrome-footer-heading {
  font-family: var(--chrome-font);
  font-weight: 600;
  font-size: 1.125rem;
  font-stretch: condensed;
  color: var(--chrome-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.chrome-footer-nav,
.chrome-footer-legal-nav,
.chrome-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chrome-footer-link {
  color: var(--chrome-text);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.chrome-footer-link:hover {
  color: var(--chrome-accent);
}

.chrome-footer-bottom {
  border-top: 1px solid var(--chrome-bg-alt);
  padding-top: 2rem;
  text-align: center;
  color: var(--chrome-text-muted);
  font-size: 0.875rem;
}

[data-mobile-nav][hidden],
[data-mobile-nav].hidden {
  display: none
}

[data-mobile-nav][data-mobile-open="1"] {
  display: block
}
