:root {
  --aumeats-shell-ink: #102921;
  --aumeats-shell-deep: #0f251e;
  --aumeats-shell-gold: #d5ad51;
  --aumeats-shell-paper: #f4efe4;
  --aumeats-shell-white: #fff;
}

html {
  scroll-padding-top: 104px;
}

body {
  padding-top: 94px !important;
}

[data-aumeats-legacy-nav] {
  display: none !important;
}

.aumeats-shell-header,
.aumeats-shell-footer {
  box-sizing: border-box;
  color: var(--aumeats-shell-white);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
}

.aumeats-shell-header *,
.aumeats-shell-footer * {
  box-sizing: border-box;
}

.aumeats-shell-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 2147483000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(1500px, calc(100% - 24px));
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(213, 173, 81, 0.3);
  border-radius: 999px;
  background: rgba(15, 37, 30, 0.94);
  box-shadow: 0 18px 42px rgba(4, 18, 13, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.aumeats-shell-brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  padding: 2px 7px;
}

.aumeats-shell-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.aumeats-shell-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 16px);
  min-width: 0;
}

.aumeats-shell-nav a,
.aumeats-shell-cta,
.aumeats-shell-toggle {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
}

.aumeats-shell-nav a {
  padding: 10px 2px;
  white-space: nowrap;
}

.aumeats-shell-nav a[aria-current="page"] {
  color: var(--aumeats-shell-gold);
}

.aumeats-shell-nav a:focus-visible,
.aumeats-shell-nav a:hover {
  color: var(--aumeats-shell-gold);
}

.aumeats-shell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--aumeats-shell-gold);
  color: var(--aumeats-shell-ink);
  white-space: nowrap;
}

.aumeats-shell-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.aumeats-shell-toggle span,
.aumeats-shell-toggle::before,
.aumeats-shell-toggle::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.aumeats-shell-footer {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(300px, 2fr);
  gap: 42px;
  padding: 46px max(24px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 85% 20%, rgba(213, 173, 81, 0.15), transparent 32%),
    var(--aumeats-shell-deep);
}

.aumeats-shell-footer-brand img {
  width: 178px;
  max-width: 100%;
}

.aumeats-shell-footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.aumeats-shell-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: start;
}

.aumeats-shell-footer-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
}

.aumeats-shell-footer-nav a:hover,
.aumeats-shell-footer-nav a:focus-visible {
  color: var(--aumeats-shell-gold);
}

.aumeats-shell-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .aumeats-shell-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .aumeats-shell-toggle {
    display: block;
    order: 3;
  }

  .aumeats-shell-cta {
    margin-left: auto;
  }

  .aumeats-shell-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    display: none;
    width: min(420px, calc(100vw - 24px));
    padding: 14px;
    border: 1px solid rgba(213, 173, 81, 0.28);
    border-radius: 24px;
    background: rgba(15, 37, 30, 0.98);
    box-shadow: 0 18px 38px rgba(4, 18, 13, 0.32);
  }

  .aumeats-shell-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aumeats-shell-nav a {
    padding: 11px 12px;
    border-radius: 12px;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 82px !important;
  }

  .aumeats-shell-header {
    top: 10px;
    width: calc(100% - 16px);
    min-height: 56px;
    padding: 8px 9px;
  }

  .aumeats-shell-brand {
    width: 132px;
  }

  .aumeats-shell-cta {
    display: none;
  }

  .aumeats-shell-nav {
    width: calc(100vw - 16px);
  }

  .aumeats-shell-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 22px;
  }

  .aumeats-shell-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aumeats-shell-footer-meta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .aumeats-shell-nav.is-open,
  .aumeats-shell-footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aumeats-shell-header *,
  .aumeats-shell-footer * {
    scroll-behavior: auto !important;
  }
}
