/**
 * Static HTML mirror of Next.js SiteHeader + NexterraLogoLink (light theme only).
 * Tokens align with app/globals.css — warm stone + amber (logistics / industrial).
 */
:root {
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --site-gutter: clamp(16px, 3.5vw, 56px);
  --max-w: calc(100vw - 2 * var(--site-gutter));
  --text: #1c1917;
  --muted: #57534e;
  --border: rgba(120, 113, 108, 0.18);
  --border-strong: rgba(154, 52, 18, 0.3);
  --link: #c2410c;
  --accent-gradient: linear-gradient(135deg, #9a3412 0%, #c2410c 42%, #ea580c 100%);
  --header-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 249, 0.96) 100%);
  --nav-hover: rgba(234, 88, 12, 0.1);
  --surface-raised: rgba(255, 255, 255, 0.9);
  --surface-hover: rgba(255, 247, 237, 0.96);
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-shadow: 0 4px 24px rgba(28, 25, 23, 0.06), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.site-header-next {
  position: relative;
  z-index: 2;
  border-bottom: none;
  background-color: rgba(255, 253, 250, 0.82);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 245, 0.88) 100%),
    linear-gradient(105deg, rgba(254, 215, 170, 0.14) 0%, transparent 42%, transparent 58%, rgba(253, 186, 116, 0.1) 100%),
    linear-gradient(90deg, #9a3412 0%, #ea580c 38%, #c2410c 72%, #7c2d12 100%);
  background-size: 100% calc(100% - 4px), 100% 100%, 100% 4px;
  background-position: top, top, bottom;
  background-repeat: no-repeat;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 8px 40px rgba(28, 25, 23, 0.07);
}

.site-header-next__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 14px var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.site-header-next__inner > :first-child {
  flex-shrink: 0;
}

.site-header-next__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(248px, 72vw);
  min-width: 7.5rem;
  max-width: 248px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline-offset: 3px;
  transition: opacity 0.15s ease;
}

.site-header-next__logo:hover {
  opacity: 0.92;
}

.site-header-next__logo:focus-visible {
  outline: 2px solid var(--link);
}

@media (min-width: 640px) {
  .site-header-next__logo {
    width: min(248px, 36vw);
  }
}

@media (min-width: 1024px) {
  .site-header-next__logo {
    width: 248px;
  }
}

.site-header-next__logoInner {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}

.site-header-next__logoImg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header-next__rightCluster {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header-next__dropdownWrap {
  position: relative;
}

.site-header-next__navTrigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 750;
  font-family: var(--font-sans);
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--text);
  cursor: pointer;
}

.site-header-next__navTrigger:hover {
  background: var(--surface-hover);
}

.site-header-next__chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  transition: transform 0.15s ease;
}

.site-header-next__navTrigger[aria-expanded="true"] .site-header-next__chevron {
  transform: rotate(180deg);
}

.site-header-next__dropdownPanel[hidden] {
  display: none !important;
}

.site-header-next__dropdownPanel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 12rem;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  z-index: 200;
}

.site-header-next__dropdownLink {
  display: block;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-sans);
}

.site-header-next__dropdownLink:hover {
  background: var(--nav-hover);
}
