:root { color-scheme: light only !important; --hdr-h: 74px; }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; background: #454038; }
    
    html.rd-shared { background: #ffffff; }
    body {
      margin: 0; padding: 0;
      background: #454038;
      font-family: 'Libre Franklin', system-ui, sans-serif;
      color: #ECEADB;
        
        overflow-x: clip;
    }
    
    body.rd-shared {
      background: #ffffff;
      color: #454038;
    }
    
    html.rd-shared select,
    html.rd-shared option,
    html.rd-shared input,
    html.rd-shared textarea,
    html.rd-shared .dropdown-menu,
    html.rd-shared .dropdown-item,
    html.rd-shared .modal-content {
      color: #212529 !important;
      background-color: #ffffff !important;
    }

    
    :root { --hdr-h: 78px; }

    .mast {
      --logo-h: 46px;
      --pad-t: 0px;
      position: fixed;
      inset: 0 0 auto 0;
      min-height: var(--hdr-h);
      z-index: 1000;
      display: flex;
      align-items: center;
      padding-top: var(--pad-t);
      background: rgba(69,64,56,.97);
      transition: background-color .4s cubic-bezier(.22,.61,.36,1),
                  min-height .4s cubic-bezier(.22,.61,.36,1),
                  padding-top .4s cubic-bezier(.22,.61,.36,1);
    }
    
    .mast--over {
      --logo-h: 96px;
      --pad-t: 30px;
      min-height: 170px;
      background: linear-gradient(180deg, rgba(69,64,56,.66), rgba(69,64,56,.14) 78%, rgba(69,64,56,0));
    }

    .mast__inner {
      
      width: min(1500px, 100% - 6vw);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-rows: auto auto;
      align-items: center;
      column-gap: 12px;
      row-gap: 2px;
    }
    .mast__util   { grid-row: 1; grid-column: 3; justify-self: end;
                    display: flex; align-items: center; gap: 16px; }
    
    .mast--over .mast__inner { row-gap: 10px; }
    .mast--over .mast__util  { margin-right: -2vw; }
    .mast__side--l { grid-row: 2; grid-column: 1; }
    .mast__side--r { grid-row: 2; grid-column: 3; }
    .mast__logo    { grid-row: 1 / span 2; grid-column: 2; }

    
    .mast:not(.mast--over) .mast__inner { grid-template-rows: auto; }
    .mast:not(.mast--over) .mast__util,
    .mast:not(.mast--over) .mast__side--l,
    .mast:not(.mast--over) .mast__side--r,
    .mast:not(.mast--over) .mast__logo { grid-row: 1; }
    .mast:not(.mast--over) .mast__side--r { grid-column: 3; }
    .mast:not(.mast--over) .mast__util   { grid-column: 4; }
    .mast:not(.mast--over) .mast__inner  { grid-template-columns: 1fr auto 1fr auto; }

    .mast__logo { justify-self: center; display: block; flex-shrink: 0; }
    .mast__logo img {
      height: var(--logo-h);
      width: auto;
      transition: height .4s cubic-bezier(.22,.61,.36,1);
    }

    .nv { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; width: 100%; }
    .nv--left, .nv--right { justify-content: space-evenly; }

    .mast__side { display: flex; align-items: center; gap: 12px; min-width: 0; }
    .mast__side > nav { flex: 1; min-width: 0; }
    .mast__side--r { justify-content: flex-end; }

    .nv-group { position: relative; }

    
    .nv-trigger {
      background: none; border: 0;
      font-family: 'Domine', Georgia, serif;
      font-weight: 600;
      font-size: clamp(.92rem, 1.35vw, 1.28rem);
      letter-spacing: 0;
      text-transform: lowercase;
      color: #FFFFFF;              
      padding: 16px 15px;
      cursor: pointer;
      white-space: nowrap;
      position: relative;
      transition: color .3s ease, font-size .4s cubic-bezier(.22,.61,.36,1);
    }
    .mast:not(.mast--over) .nv-trigger { font-size: clamp(.82rem, 1vw, .98rem); padding: 20px 12px; }
    .nv-trigger:hover, .nv-group.is-open .nv-trigger, .nv-group.is-current .nv-trigger { color: #F2D76B; }
    .nv-trigger::after {
      content: '';
      position: absolute; left: 15px; right: 15px; bottom: 13px;
      height: 1px; background: #F2D76B;
      transform: scaleX(0);
      transition: transform .35s cubic-bezier(.22,.61,.36,1);
    }
    .nv-group.is-open .nv-trigger::after,
    .nv-group.is-current .nv-trigger::after { transform: scaleX(1); }
    .nv-caret { display: none; }

    
    .nv-panel {
      position: absolute; top: 100%; left: 50%;
      transform: translate(-50%, 10px);
      min-width: 336px;
      background: #3A352E;
      border: 1px solid rgba(242,215,107,.3);
      border-top: 2px solid #F2D76B;
      box-shadow: 0 34px 64px -24px rgba(0,0,0,.7);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .28s ease, transform .3s cubic-bezier(.22,.61,.36,1), visibility .28s;
    }
    .nv-group.is-open .nv-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }

    
    .nv--left .nv-group:first-child .nv-panel {
      left: 0; right: auto; transform: translate(0, 10px);
    }
    .nv--left .nv-group:first-child.is-open .nv-panel { transform: translate(0, 0); }
    .nv--right .nv-group:last-child .nv-panel {
      left: auto; right: 0; transform: translate(0, 10px);
    }
    .nv--right .nv-group:last-child.is-open .nv-panel { transform: translate(0, 0); }
    .nv-panel-inner { padding: 10px; }
    .nv-list { list-style: none; margin: 0; padding: 0; }
    .nv-list a {
      display: block; padding: 11px 15px; text-decoration: none;
      border-left: 2px solid transparent;
      transition: background-color .22s ease, border-color .22s ease;
    }
    .nv-list a:hover { background: rgba(242,215,107,.09); border-left-color: #F2D76B; text-decoration: none; }
    
    .nv-list a.is-here {
      background: #F2D76B;
      border-left-color: #F2D76B;
    }
    .nv-list a.is-here .nv-item-title { color: #454038; }
    .nv-list a.is-here .nv-item-blurb { color: rgba(69,64,56,.72); }
    .nv-list a.is-here:hover { background: #F2D76B; }
    .nv-item-title {
      display: block; font-family: 'Domine', serif; font-weight: 500;
      font-size: .98rem; color: #ECEADB; line-height: 1.25;
    }
    .nv-item-blurb {
      display: block; font-family: 'Libre Franklin', sans-serif;
      font-size: .74rem; color: rgba(236,234,219,.5); margin-top: 3px; line-height: 1.4;
    }
    
    .nv-section {
      font-family: 'Libre Franklin', sans-serif;
      font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: #F2D76B;
      padding: 14px 15px 6px;
      border-top: 1px solid rgba(242,215,107,.18);
      margin-top: 6px;
    }
    .nv-list > .nv-section:first-child { border-top: 0; margin-top: 0; padding-top: 6px; }
    
    .nv-list a { padding: 9px 15px; }

    
    .mast__cta {
      display: inline-block;
      
      background: #F2D76B;
      color: #454038;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      
      padding: 10px 22px;
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      border: 1px solid #F2D76B;
      box-shadow: 0 2px 10px rgba(20,17,13,.28);
      transition: background-color .3s ease, color .3s ease;
    }
    
    .mast__cta:hover { background: #E4C348; color: #3A352E; text-decoration: none; border-color: #E4C348; }

    
    .burger {
      display: none; flex-direction: column; justify-content: center; gap: 6px;
      width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 0;
    }
    .burger span { display: block; height: 1.5px; width: 26px; background: #ECEADB; transition: transform .36s cubic-bezier(.22,.61,.36,1), opacity .22s ease; }
    body.mnav-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    body.mnav-open .burger span:nth-child(2) { opacity: 0; }
    body.mnav-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    
    .mnav {
      position: fixed; inset: var(--hdr-h) 0 0 0;
      background: #454038; z-index: 999; overflow-y: auto;
      transform: translateX(100%); visibility: hidden;
      transition: transform .42s cubic-bezier(.22,.61,.36,1), visibility .42s;
      padding: 22px 22px 60px;
    }
    body.mnav-open .mnav { transform: none; visibility: visible; }
    body.mnav-open { overflow: hidden; }
    .mnav ul { list-style: none; margin: 0; padding: 0; }
    .mnav-group { border-bottom: 1px solid rgba(242,215,107,.2); }
    .mnav-trigger {
      width: 100%; background: none; border: 0;
      display: flex; align-items: center; justify-content: space-between;
      font-family: 'Libre Franklin', sans-serif; font-weight: 700;
      font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
      color: #ECEADB; padding: 19px 2px; cursor: pointer; text-align: left;
    }
    .mnav-caret { width: 7px; height: 7px; border-right: 1.5px solid #F2D76B; border-bottom: 1.5px solid #F2D76B; transform: rotate(45deg); transition: transform .3s ease; flex-shrink: 0; }
    .mnav-group.is-open .mnav-caret { transform: rotate(-135deg); }
    .mnav-sub { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.22,.61,.36,1); }
    .mnav-group.is-open .mnav-sub { max-height: 560px; }
    .mnav-sub a {
      display: block; font-family: 'Domine', serif; font-size: 1rem;
      color: rgba(236,234,219,.76); padding: 11px 0 11px 16px;
      border-left: 1px solid rgba(242,215,107,.3); margin-left: 2px; text-decoration: none;
    }
    .mnav-sub a:hover, .mnav-sub a:active { color: #F2D76B; text-decoration: none; }
    .mnav-sub a.is-here {
      background: #F2D76B !important;
      color: #454038 !important;
      font-weight: 700;
    }
    .mnav-section {
      font-family: 'Libre Franklin', sans-serif;
      font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: #F2D76B; padding: 14px 0 4px 16px;
      border-left: 1px solid rgba(242,215,107,.3); margin-left: 2px;
    }
    .mnav-sub li:last-child a { padding-bottom: 20px; }
    
    .mnav-group.is-open .mnav-sub { max-height: 760px; }
    .mnav__cta { display: block; text-align: center; margin-top: 28px; padding: 15px 24px; }

    @media (max-width: 1180px) { .nv-trigger { padding: 26px 9px; font-size: .78rem; } }
    @media (max-width: 1000px) {
      .nv { display: none; }
      
      .mast__inner { grid-template-columns: auto 1fr auto; grid-template-rows: auto; column-gap: 10px; }
      .mast__logo { grid-row: 1; grid-column: 1; justify-self: start; }
      .mast__util { grid-row: 1; grid-column: 2; justify-self: center; }
      .burger     { grid-row: 1; grid-column: 3; justify-self: end; display: flex; }
      .mast__side--l, .mast__side--r { display: none; }
      
      .mast__util .admin-dropdown-container { display: none; }
      .mast__logo img { height: 40px; }
      .mast--over { min-height: var(--hdr-h); --pad-t: 0px; }
    }
    @media (max-width: 400px) {
      .mast__cta { padding: 9px 14px; font-size: .72rem; }
      .mast__logo img { height: 34px; }
    }

    
    .mnav .admin-dropdown-container { display: block; border-bottom: 1px solid rgba(242,215,107,.2); }
    .mnav .admin-dropdown-container > a {
      background: none; border: 0; border-radius: 0; padding: 19px 2px;
      font-family: 'Libre Franklin', sans-serif; font-weight: 700;
      font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
      color: #F2D76B !important;
    }
    .mnav .admin-dropdown-arrow { display: none; }
    
    .mnav .admin-dropdown-menu {
      display: grid; grid-template-columns: 1fr 1fr; column-gap: 6px; position: static; background: none; border: 0;
      box-shadow: none; padding: 0 0 14px; min-width: 0;
    }
    .mnav .admin-dropdown-menu .admin-dropdown-full, .mnav .admin-dropdown-menu .admin-dropdown-signout { grid-column: 1 / -1; }
    .mnav .admin-dropdown-item {
      padding: 11px 0 11px 16px;
      border-left: 1px solid rgba(242,215,107,.3); margin-left: 2px;
      font-family: 'Domine', serif; font-size: 1rem; color: rgba(236,234,219,.76);
    }
    .mnav .admin-dropdown-item:hover { background: none; color: #F2D76B; }
    .mnav .admin-dropdown-signout { border-top: 1px solid rgba(242,215,107,.22); margin-top: 8px; padding-top: 14px; }

    
    .admin-dropdown-container { position: relative; display: flex; align-items: center; }
    .admin-dropdown-container > a {
      font-family: 'Libre Franklin', sans-serif; font-size: .76rem; font-weight: 700;
      letter-spacing: .05em; text-transform: uppercase;
      color: #F2D76B !important; text-decoration: none;
      display: flex; align-items: center; gap: 5px;
      padding: 10px 16px; border-radius: 8px;
      background: rgba(52,47,41,.94); border: 1px solid rgba(242,215,107,.38);
    }
    .admin-dropdown-container > a:hover { color: #FFFFFF !important; }
    .admin-dropdown-menu {
      display: none; position: absolute; top: calc(100% + 14px); right: 0;
      background: #3A352E; border: 1px solid rgba(242,215,107,.3);
      min-width: 460px; padding: 8px; z-index: 1001;
      box-shadow: 0 28px 56px -20px rgba(0,0,0,.75);
    }
    .admin-dropdown-container.active .admin-dropdown-menu { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4px; }
    .admin-dropdown-menu .admin-dropdown-full, .admin-dropdown-menu .admin-dropdown-signout { grid-column: 1 / -1; }
    .admin-dropdown-item {
      display: flex; align-items: center; padding: 10px 17px;
      color: rgba(236,234,219,.85); font-family: 'Libre Franklin', sans-serif;
      font-size: .86rem; text-decoration: none;
    }
    .admin-dropdown-item:hover { background: rgba(242,215,107,.1); color: #F2D76B; text-decoration: none; }
    .admin-dropdown-signout { border-top: 1px solid rgba(242,215,107,.22); margin-top: 6px; padding-top: 12px; }
    .admin-dropdown-icon { display: inline-flex; align-items: center; justify-content: center; width: 27px; margin-right: 9px; font-size: 1rem; position: relative; }
    .notification-dot { position: absolute; top: -2px; right: 0; width: 8px; height: 8px; background: #6390C6; border-radius: 50%; }
    @media (max-width: 1000px) { .mast__util .admin-dropdown-container { display: none; } }

    
    #main-content { padding-top: var(--hdr-h); }
    
    
    #main-content.rd-flush { padding-top: 0; }
    
    #main-content:has(.hero),
    #main-content:has([class*="-hero"]) { padding-top: 0; }

    
    .mast .mast__cta,
    .mnav .mast__cta                { color: #454038 !important; }
    .mast .nv-item-title            { color: #ECEADB !important; }
    .mast .nv-item-blurb            { color: rgba(236,234,219,.5) !important; }
    .mast .nv-list a.is-here .nv-item-title { color: #454038 !important; }
    .mast .nv-list a.is-here .nv-item-blurb { color: rgba(69,64,56,.72) !important; }
    .mast .admin-dropdown-item,
    .mast .admin-dropdown-item span { color: rgba(236,234,219,.85) !important; }
    .mnav .admin-dropdown-item,
    .mnav .admin-dropdown-item span,
    .mnav .mnav-sub a               { color: rgba(236,234,219,.76) !important; }
    .mnav .mnav-sub a.is-here       { color: #454038 !important; }
    .rdfoot .rdfoot__tagline        { color: rgba(236,234,219,.62) !important; }
    .rdfoot .rdfoot__hours-body,
    .rdfoot .rdfoot__hours-body div,
    .rdfoot .rdfoot__hours-body span { color: rgba(236,234,219,.78) !important; }
    .rdfoot .rdfoot__hours-label    { color: #F2D76B !important; }
    .rdfoot .rdfoot__bottom,
    .rdfoot .rdfoot__bottom span    { color: rgba(236,234,219,.5) !important; }
    .rdfoot .ft-col a               { color: rgba(236,234,219,.72) !important; }
