/* Self-hosted Work Sans (SIL OFL) — replaces the Google Fonts <link> so the site
   stays fully self-contained. Same weights the design uses: 300/400/500/600/700. */
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('/vendor/fonts/work-sans/work-sans-300.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/vendor/fonts/work-sans/work-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/vendor/fonts/work-sans/work-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/vendor/fonts/work-sans/work-sans-600.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('/vendor/fonts/work-sans/work-sans-700.woff2') format('woff2'); }

/* Cotta — styling for the vanilla nav (replaces Weebly's JS-managed flyout).
   Desktop: "Menu" reveals a vertical dropdown box on hover.
   Mobile: caret toggles the submenu (handled by main_style.css max-height + .open). */

/* Desktop dropdown flyout */
.desktop-nav .wsite-menu-item-wrap.has-submenu { position: relative; }

.desktop-nav .wsite-menu-item-wrap.has-submenu > .wsite-menu-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 165px;
  margin: 0;
  padding: 6px 0;
  background: #000000;
  z-index: 200;
  text-align: left;
}

.desktop-nav .wsite-menu-wrap .wsite-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .wsite-menu-wrap .wsite-menu > li {
  display: block;
  float: none;
  margin: 0;
}

.desktop-nav .wsite-menu-wrap .wsite-menu > li > a {
  display: block;
  padding: 9px 22px;
  white-space: nowrap;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 150ms ease;
}

.desktop-nav .wsite-menu-wrap .wsite-menu > li > a:hover {
  opacity: 1;
}

/* Caret indicator: hidden on desktop (as the original), shown on mobile */
.desktop-nav .icon-caret { display: none; }

.mobile-nav .icon-caret {
  display: inline-block;
  cursor: pointer;
  padding: 0 14px;
  vertical-align: middle;
}
.mobile-nav .icon-caret::before {
  content: "\25BE"; /* ▼ */
  color: #ffffff;
  opacity: 0.7;
}

/* The nav <ul> has overflow:hidden (clipped the flyout on desktop) */
.desktop-nav .wsite-menu-default,
.desktop-nav .nav-wrap,
.desktop-nav .container { overflow: visible; }

/* Site font: Work Sans everywhere (body text was Birdseye, buttons were Montserrat) */
body,
body div.paragraph, body p, body blockquote, body li,
h1, h2, h3, h4, h5, h6, .wsite-content-title,
.banner-wrap h1, .banner-wrap h2, .banner-wrap div.paragraph, .banner-wrap p,
.arial,
.nav .wsite-menu-item, .wsite-menu a,
.wsite-button .wsite-button-inner, .wsite-button-inner {
  font-family: 'Work Sans', sans-serif !important;
}

/* Font weights (per Ivan): hero title 600, headings 500, body 300 */
.arial, .banner-wrap h1 {
  font-weight: 600 !important;
}
h1, h2, h3, h4, h5, h6, .wsite-content-title {
  font-weight: 500 !important;
}
body div.paragraph, body p, body blockquote,
.banner-wrap div.paragraph, .banner-wrap p {
  font-weight: 300 !important;
}

/* "Cotta, featured in..." press wall — borderless, white logos that colour on hover */
.press-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 18px;
  max-width: 720px;
  margin: 34px auto 10px;
}
.press-wall .press-logo {
  flex: 0 0 150px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 14px;
  border-radius: 9px;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}
.press-wall .press-logo:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.press-wall .press-logo img {
  max-height: 30px;
  max-width: 122px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 180ms ease, filter 180ms ease;
}
.press-wall .press-logo:hover img {
  filter: none;
  opacity: 1;
}

/* Dark "featured in" field: light heading + text on #323232 */
.press-section .wsite-content-title {
  color: #ededed !important;
  font-size: 15px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.press-more {
  max-width: 720px;
  margin: 20px auto 0 !important;
  font-size: 14px !important;
  color: #b0b0b0 !important;
}
.press-more a { color: #ffffff; text-decoration: underline; }

@media screen and (max-width: 480px) {
  .press-wall { gap: 22px 30px; }
  .press-wall .press-logo { height: 30px; }
  .press-wall .press-logo img { max-height: 24px; max-width: 118px; }
}
