/* Aurea — site nav (logo pill + full-screen menu). Linked by every page entry,
   including the Webflow experience pages that do not load landing.css, so the token
   fallbacks below stand in when landing.css is absent. */
.aurea-nav__btn,
.aurea-menu,
.aurea-social {
  --nav-bg: var(--bg, #f7f7f5);
  --nav-text: var(--text, #262521);
  --nav-muted: var(--text-muted, #6f6a5f);
  --nav-gold: var(--gold, #c6a15b);
  --nav-hair: var(--hair, #00000017);
}
html.aurea-nav-open,
html.aurea-nav-open body { overflow: hidden; }

/* The pill is the site's only fixed logo now: the landing's topbar markup is gone
   and the experience pages' own logo wrapper is hidden here, the loader's copy of
   it included — the pill sits above the loader, so that one would double up. */
.logo-wrapper { display: none; }

/* ---------- The pill ---------- */
.aurea-nav__btn {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  /* Above the experience pages' fullscreen loader (1002), which would otherwise
     hide the pill until "start experience" is clicked; above the menu (1100) too
     once the menu is open, so the same pill closes it. */
  z-index: 1003;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.aurea-nav__btn.is-open { z-index: 1101; }
.aurea-nav__logo {
  height: 26px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}
/* The close glyph only takes up room once the menu is open. */
.aurea-nav__x {
  position: relative;
  width: 0;
  height: 10px;
  flex: none;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.2s ease, margin-left 0.3s ease;
}
.aurea-nav__x span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--nav-text);
}
.aurea-nav__x span:first-child { transform: rotate(45deg); }
.aurea-nav__x span:last-child { transform: rotate(-45deg); }
.aurea-nav__btn.is-open .aurea-nav__x { width: 12px; margin-left: 0.9rem; opacity: 1; }

/* ---------- Skins ----------
   is-light / is-dark follow the section the pill currently sits over (a section can
   force one with data-nav-skin). On a dark section the logo is knocked out to white
   so the wordmark keeps its contrast. */
.aurea-nav__btn.is-light {
  border-color: #26252126;
  background: #ffffffbf;
}
.aurea-nav__btn.is-light:hover { border-color: var(--nav-gold); background: #fff; }
.aurea-nav__btn.is-dark {
  border-color: #ffffff59;
  background: #0000004d;
}
.aurea-nav__btn.is-dark:hover { border-color: #fff; background: #00000073; }
.aurea-nav__btn.is-dark .aurea-nav__logo { filter: brightness(0) invert(1); }
.aurea-nav__btn.is-dark .aurea-nav__x span { background: #fff; }

/* Open, the pill always sits on the cream menu, whatever is underneath it. */
.aurea-nav__btn.is-open {
  border-color: #26252126;
  background: #ffffffbf;
}
.aurea-nav__btn.is-open .aurea-nav__logo { filter: none; }
.aurea-nav__btn.is-open .aurea-nav__x span { background: var(--nav-text); }

/* ---------- The menu ---------- */
.aurea-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-top: calc(clamp(1.5rem, 5vw, 4rem) + 40px);
  overflow-y: auto;
  background: var(--nav-bg);
  color: var(--nav-text);
  font-family: "Aurea Type", Arial, sans-serif;
  animation: aurea-menu-in 0.35s ease both;
}
.aurea-menu[hidden] { display: none; }
@keyframes aurea-menu-in { from { opacity: 0; } to { opacity: 1; } }

.aurea-menu__cols {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  margin: auto 0;
}
@media (min-width: 800px) { .aurea-menu__cols { grid-template-columns: 1.4fr 1fr; } }

.aurea-menu__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--nav-gold);
  margin: 0 0 1.25rem;
}
.aurea-menu__list { list-style: none; margin: 0; padding: 0; }
.aurea-menu__list li + li { border-top: 1px solid var(--nav-hair); }
.aurea-menu__list a {
  display: block;
  padding: 0.7rem 0;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.aurea-menu__list a:hover { color: var(--nav-gold); padding-left: 0.5rem; }
.aurea-menu__list--lead a {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.25;
}
/* Self-contained: the experience pages never load landing.css, where .aurea-btn lives. */
.aurea-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.95rem 2rem;
  border: 1px solid var(--nav-gold);
  border-radius: 2px;
  background: var(--nav-gold);
  color: var(--nav-bg);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}
.aurea-menu__cta:hover { background: var(--gold-soft, #d8bd86); transform: translateY(-2px); }

/* Legal links left, then the language picker, socials right; they stack on narrow screens. */
.aurea-menu__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nav-hair);
}

.aurea-menu__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.aurea-menu__legal a {
  color: var(--nav-muted);
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.aurea-menu__legal a:hover { color: var(--nav-gold); }

.aurea-menu__lang {
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  border: 1px solid var(--nav-hair);
  border-radius: 999px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236f6a5f'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  color: var(--nav-muted);
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.aurea-menu__lang:hover,
.aurea-menu__lang:focus-visible { color: var(--nav-gold); border-color: var(--nav-gold); }

@media (max-width: 600px) {
  .aurea-nav__btn { top: 10px; padding: 0.45rem 1.15rem; }
  .aurea-nav__logo { height: 21px; }
  /* The full-width button rule from the landing would stretch the menu CTA. */
  .aurea-menu__cta { width: 100%; }
  /* "Diamond Necklace" / "Heritage Jewellery" must read as one line: 4.1vw is the
     largest size that keeps the longest label inside the padding from 320px up. */
  .aurea-menu__list--lead a { font-size: 4.1vw; white-space: nowrap; }
}

/* ---------- Social links (site menu + the landing and owners footers) ---------- */
.aurea-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.aurea-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--nav-hair);
  color: var(--nav-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.aurea-social__link:hover {
  color: var(--nav-gold);
  border-color: var(--nav-gold);
  transform: translateY(-2px);
}
.aurea-social__link svg {
  width: 19px;
  height: 19px;
  display: block;
}
